Created
June 23, 2022 06:53
-
-
Save teja156/67faf07de60d6650c26f8d3a05120094 to your computer and use it in GitHub Desktop.
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
YouTube video link: https://youtu.be/kA2ZYD4zgEo | |
All the commands that are executed in the above youtube video are mentioned in this gist. | |
1. Install AWS shell | |
pip install aws-shell | |
2. Configure AWS shell | |
aws configure | |
3. Create a repo on AWS CodeCommit | |
aws codecommit create-repository --repository-name wild-rydees | |
4. Clone the source code from Github | |
git clone https://github.com/aws-samples/aws-serverless-webapp-workshop | |
5. Split the WildRydes app into a branch | |
cd aws-serverless-webapp-workshop | |
git subtree split -P ./resources/code/WildRydesVue/ -b WildRydesVue | |
6. Create a git repo and populate it with source code of WildRydesVue | |
mkdir ../wild-rydes | |
cd ../wild-rydes | |
git init | |
git pull ../aws-serverless-webapp-workshop WildRydesVue | |
7. Create a repo and AWS CodeCommit and push this source code | |
git remote add origin codecommit://wild-rydes | |
git push -u origin master | |
8. Install amplify cli | |
npm install -g @aws-amplify/cli | |
amplify init | |
9. Add user pool to amplify app | |
amplify add auth | |
10. Push changes to the codecommit | |
git add . | |
git commit -m "made changes" | |
git push |
Im not getting proper output...can u please help me?
im follow all your commands in ubuntu i have issue in subtree split can you help me ??
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
YouTube video link: https://youtu.be/kA2ZYD4zgEo
Here in this video, BUILD A SERVERLESS BACKEND
requestUnicorn.js is not working, could you please paste the code here