LOCUS: A Timed MCQ based exam submission web app
Frontend Repo: locus-frontend
Create a virtual environment
python -m venv name
Connect to virtual environment (Windows):
name\Scripts\activate.bat
Clone the repo:
git clone https://github.com/fausan123/locus-backend.git
Goto the created repo folder and install the requirements file:
pip install -r requirements.txt
Initialise database:
python manage.py makemigrations
python manage.py migrate
To create a superuser for viewing the admin interface:
python manage.py createsuperuser
Finally, to run the server:
python manage.py runserver
To view the developed apis, run the server and goto http://localhost:8000/. You will be directed to an API documentation.