https://github.com/nescode/pollcorn
Simple poll application in django
https://github.com/nescode/pollcorn
Last synced: 9 months ago
JSON representation
Simple poll application in django
- Host: GitHub
- URL: https://github.com/nescode/pollcorn
- Owner: nescode
- Created: 2016-03-30T23:56:46.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-03-31T08:46:44.000Z (about 10 years ago)
- Last Synced: 2025-05-24T05:37:00.080Z (about 1 year ago)
- Language: Python
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## A Simple Poll Application (Development)
This poll application is build upon famous Django official documentation. It consist of two part:
* A public site that lets people view polls and vote in them.
* An admin site that lets you add, change and delete polls.
This poll app is going to be a part of Cornstack project.
## How to setup
Create a virtualenv in your system and clone this repositories
```python
git clone https://github.com/nescode/pollcorn.git
cd pollcorn
pip install -r requirements.txt
./manage.py migrate
./manage.py createsuperuser
```
Browse your localhost with 8000 port. Polls application accessible at
```python
http://127.0.0.1:8000/polls
```