A template Python repository for GTAC programmers. Please provide feedback if you are GTAC Python programmer!
Complete the following steps to start a new project (NEW-PROJECT-NAME):
- Clone this repository to your local machine
git clone TEMPLATE-URL NEW-PROJECT-NAME
cd
into the cloned repository- Make a fresh start of the git history for this project with
rm -rf .git && git init
- Move the example Environment file to
.env
that will be ignored by git and read by your codemv example.env .env
- DESCRIBE THESE STEPS
- Create a new repository in GitHub making sure that the name matches the
NEW-PROJECT-NAME
specified in the setup. - Copy the commands provide by GitHub to push an existing repository from the command line
git remote add origin <GITHUB URL>
git branch -M main
git push -u origin main
- DESCRIBE THE GUIDELINES FOR COLLABORATION AND BEST PRACTICES