Last active
January 21, 2019 20:43
-
-
Save jetstreamin/108c4aad9ac962bd86bdc0f97a68b806 to your computer and use it in GitHub Desktop.
AWS Amplify - Spin-Up JS App
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
PROJNAME=$1 | |
mkdir $PROJNAME | |
echo Making $PROJNAME | |
mkdir -p $PROJNAME/src && cd $PROJNAME | |
npm init | |
touch index.html | |
touch src/app.js | |
npm install | |
npm start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment