This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Cache node modules - speeds up future builds | |
cache: | |
paths: | |
- node_modules | |
stages: | |
- build | |
- run | |
variables: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: "2010-09-09" | |
Description: "Template description" | |
Parameters: | |
AppEnvironment: | |
Type: String | |
Default: production | |
EC2InstanceType: | |
Type: String | |
Default: a1.medium |