Skip to content
This repository has been archived by the owner on Jul 25, 2021. It is now read-only.

Latest commit

 

History

History
20 lines (16 loc) · 786 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 786 Bytes

django-poll-app

The solution to https://docs.djangoproject.com/en/dev/intro/tutorial01/

Getting Started

Initial Setup

  1. Make a new virtualenv: virtualenv env
  2. Activate the virtualenv: source env/bin/activate
  3. Install Django: pip install Django
  4. Edit mysite/settings.py:36 to match your timezone
  5. Run the server: python manage.py runserver
  6. Open website in browser at http://localhost:8000/polls or admin at http://localhost:8000/admin (admin:admin)

After initial setup

  1. Activate the virtualenv: source env/bin/activate
  2. Run the server: python manage.py runserver
  3. Open website in browser at http://localhost:8000/polls or admin at http://localhost:8000/admin (admin:admin)