Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 598 Bytes

README.md

File metadata and controls

50 lines (33 loc) · 598 Bytes

Crack the code

This is a web server that can host quizzes.

Usage

Install dependencies

pip install -r requirements.txt

Fix Conf URL Path

In the virtual env: \venv\lib\site-packages\markdownx\urls.py

Replace:

from django.conf.urls import url

With:

from django.urls import re_path as url

Make migrations

python manage.py makemigrations

Perform migration

python manage.py migrate

Create a super user

python manage.py createsuperuser

Run server

python manage.py runserver