A polling application created using Python and Django.
This project was developed and tested on a local machine. The tutorial below outlines how to run the project in a local environment.
Step 1: Install the pip environment where the project will run:
$ pip install pipenv
Step 2: Run the database migrations:
$ python manage.py migrate
Step 3: Start the server (defaults to http://127.0.0.1:8000, use ctrl + c to stop):
$ python manage.py runserver
Released under the MIT license. Based on Traversey Media's tutorial.