Django Polls Application
The basic Django application from the official documentation: https://docs.djangoproject.com/en/dev/intro/tutorial01/
Setup
- Clone the repository:
https://github.com/ViktorSalimonov/django-polls.git
- Install a virtualenv in the
django-polls
directory:virtualenv venv
- Activate it:
source venv/bin/activate
- Install requirements:
pip install -r requirements.txt
- Run the server:
python mysite/manage.py runserver
The Django Polls Application will be available on http://127.0.0.1:8000/polls/ and the admin panel on http://127.0.0.1:8000/admin/ (admin:123qw)