Now that you created all the code necessary for your basic AWS account setup, make sure your code is versioned in Git.
Create a new Git repository
git init
Ignore the helper files of your editor in the .gitignore
file, eg.
echo ".idea/" >> .gitignore
echo ".vscode/" >> .gitignore
git add .gitignore
Add all the relevant files to this repository
git add Makefile log-archive/ master/ playground/ shared-services/ ci/ app-staging/ app-prod/
Also don’t forget to create a README.md
in the project.
|
|
Enhance the README to your needs and add it to Git:
git add README.md
The make a commit in Git:
git commit -m 'Set up project for AWS infrastructure setup'
Next create a repository on your Git hosting system and push your branch:
git remote add origin ...
git push origin master