Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Latest commit

 

History

History
39 lines (23 loc) · 976 Bytes

README.rst

File metadata and controls

39 lines (23 loc) · 976 Bytes

Django Polls App

image

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.

Requirements

  • Python 2.7
  • Django 1.11+

Configuration

  1. Create a virtual environment, for python 2.7 run:

    python virtualenv --your_env-- or virtualenv --your_env--
  2. Activate virtual environment and install dependencies:

    pip install -r requirements.txt
  3. Make migrations and make database tables by running:

    python manage.py makemigrations
    python manage.py migrate

Usage

After configuration, run python manage.py collectstatic then python manage.py runserver to start your server. Open http://localhost:8000/ on your browser.