Django Polls App
is an implementation of tutorials in the official django docs. Padded with new features, you can group Categories
under a Ballot Box
and many more.
- Python 2.7
- Django 1.11+
Create a virtual environment, for python 2.7 run:
python virtualenv --your_env-- or virtualenv --your_env--
Activate virtual environment and install dependencies:
pip install -r requirements.txt
Make migrations and make database tables by running:
python manage.py makemigrations python manage.py migrate
After configuration, run python manage.py collectstatic
then python manage.py runserver
to start your server. Open http://localhost:8000/
on your browser.