- The polls application is extended to a survey where admin can create multiple surveys with multiple questions and choices for each question.
- python version > 3.6 installed
- django version > 3.1.5 installed
python -m pip install django
- nested-admin > 3.3.3 installed
pip install django-nested-admin
or
python -m pip install django-nested-admin
Navigate to the project directory (where manage.py is located) and run
python manage.py makemigrations survey
Create schema for models incorporated in survey app. (The sql script returned can be used shared across teams)
python manage.py sqlmigrate survey 0001
python manage.py migrate
python manage.py collectstatic
python manage.py createsuperuser
python manage.py runserver