Once your Python package is created, put it under version control using git and GitHub.
Note that the next step assumes you have setup your connection to GitHub via SSH, see Connecting to GitHub with SSH.
Alternatively, you can also use a personal access token, see
Creating a personal access token. If you choose this option, below you will have to replace
[email protected]:
by https://github.com/
.
cd quakefeed
git init
git add --all
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:ITC-CRIB/quakefeed
Go to
https://github.com/organizations/ITC-CRIB/repositories/new
and create a new repository named quakefeed
as an empty repository, then push your commits to GitHub:
git push --set-upstream origin main
A short while after you push your commits to GitHub for the first time, a few issues outlining next steps will added automatically (here). Resolve them to complete the setup of your repository.
The README.dev.md contains developer documentation.
For an explanation of what files are there, and what each of these do, please refer to project_setup.md.