A Portal for filing and approving SSF in Students' Senate IIT Kanpur made in Django.
Clone the repository on your local environment
git clone https://aniketp41/senator-seed-fund.git
Navigate to the folder
cd Senator-Seed-Fund
Install the required dependencies
pip install -r requirements.txt
Prepare the migration scripts
python3 manage.py makemigrations
Migrate to Django's inbuilt database Sqlite
python3 manage.py migrate
Run the localhost-server
python3 manage.py runserver
The web-app will be available at 127.0.0.1:8000
on your browser.
Remember to create a new branch before you start working
git branch <branch-name>
git checkout <branch-name>
git commit -m ""
git checkout master
git merge <branch-name>
See the Django Documentation for more help on the project.