This file contains hidden or 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
pipelines: | |
branches: | |
master: | |
- step: | |
name: Build static html files | |
image: node:8.9.4-slim | |
caches: | |
- node | |
script: | |
- npm install |
This file contains hidden or 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' | |
Parameters: | |
RootDomainName: | |
Description: Domain name for your website (example.com) | |
Type: String | |
EnvironmentName: | |
Description: Name of environment to create | |
Type: String | |
Resources: | |
WebsiteCDN: |