Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 973 Bytes

README.md

File metadata and controls

37 lines (27 loc) · 973 Bytes

Senator Seed Fund Portal

A Portal for filing and approving SSF in Students' Senate IIT Kanpur made in Django.

Local Setup

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.

Development

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>

Miscellaneous

See the Django Documentation for more help on the project.