Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 466 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 466 Bytes

IIITV OC Backend

This is the API for IIITV Online Campus project.

To install:

Step 1: Create a virtual env
virtualenv venv
Step 2: Install requirements
pip3 install -r requirements.txt

Database migrations:

Step 1: Create migrations
python manage.py makemigrations
Step 2: Migrate the created migrations
python manage.py migrate

Run the server:

python manage.py runserver