Last active
July 18, 2018 09:19
-
-
Save tarasowski/636d07b8f7d50c5c20f707392c5a848b to your computer and use it in GitHub Desktop.
#Cloud9 - Bootstrapping Node + AWS SAM
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
#!/bin/bash | |
## README | |
# To run this script | |
# => run `sudo bash cloud9-bootstrap.sh` | |
# Install node 8.10 | |
nvm install 8.10 | |
# Set node 8.10 as default | |
nvm alias default 8.10 | |
# Install aws sam via pip and get the latest version of aws sam | |
pip install --user aws-sam-cli |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment