├── django-quiz-app-master.zip └── README.md /django-quiz-app-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lalith514/quiz-application-django/HEAD/django-quiz-app-master.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # quiz-application-django 2 | 3 | Installing dependencies 4 | It will install all required dependies in the project. 5 | pip install -r requirements.txt 6 | 7 | Migrations 8 | To run migrations. 9 | python manage.py makemigrations 10 | python manage.py migrate 11 | 12 | Create superuser 13 | To create super user run. 14 | python manage.py createsuperuser 15 | After running this command it will ask for username, password. You can access admin panel from localhost:8000/admin/ 16 | 17 | Running locally 18 | 19 | 20 | To run at localhost. It will run on port 8000 by default. 21 | python manage.py runserver. 22 | --------------------------------------------------------------------------------