IIT Bombay FOSSEE Submission
Assignment Details
The details of IIT Bombay FOSSEE fellowship screening task can be read here.
Installation Instruction
-
Create a virtual environment on your machine.
virtualenv -p python3 your_environment_name
We recommend using python3-virtualenv. Any other packages would do fine though.
-
Activate the newly created virtual environment.
-
Clone this repository.
git clone https://github.com/mohitkh7/IITB-FOSSEE-Assignment.git
-
Install the dependencies for the project.
pip install -r requirements.txt
-
Migrate your database.
python manage.py makemigrations python manage.py migrate
-
Load the sample data
python manage.py loaddata db.json
-
Run the live development server
python manage.py runserver 8000
URLs Details
- To view list of tutorial for a particular month visit
127.0.0.1:8000/tutorial/<month>/<year>/
where is an integer value between 1 to 12 and will be replaced by appropriate year value. This is an example link. - To view list of payment for a particular month visit
127.0.0.1:8000/payment/<month>/<year>/
where is an integer value between 1 to 12 and will be replaced by appropriate year value. This is an example link.