Do check our First Contribution repository, where we have provided the guidelines to set up Git and how to make a pull request !
git clone https://github.com/nikhil25803/collegeAPI.git
cd collegeAPI
Folder Structure
📂project
│
└───📂data
│ │ { JSON files of the data collected }
│
└───📂env
| │ { For virtual environment configuration }
|
└───📂helpers
| │ { Python Scripts to fetch data }
|
└───📂src
| { Python funnctions to filter the data }
📄.gitignore
📄CONTRIBUTING.md
📄main.py
📄README.md
📄requirements.txt
For windows
env\Scripts\Activate.ps1
For Linux
source env/scripts/activate
pip install -r requirements.txt
uvicorn main:app --reload
Once you are done with the changes you wanted to add. Follow the steps to make the pull request.
git checkout -b <branch_name>
git add .
git commit -m "Enter your message here"
git push origin <branch_name>