Last active
January 27, 2018 15:40
-
-
Save radzionc/f2a2da8e8fd67fe7a32a74c4062fcb0f to your computer and use it in GitHub Desktop.
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
image: node:latest | |
pipelines: | |
branches: | |
dev: | |
- step: | |
caches: | |
- node | |
script: | |
- apt-get update | |
- apt-get install -y default-jre | |
- npm install | |
- npm test | |
- apt-get install -y python-dev | |
- curl -O https://bootstrap.pypa.io/get-pip.py | |
- python get-pip.py | |
- pip install awsebcli --upgrade | |
- eb init <app> -r <region> -p node.js | |
- eb deploy <app> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment