Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ks-avinash/python-django-polls-app
Creation of a basic poll application
https://github.com/ks-avinash/python-django-polls-app
Last synced: 28 days ago
JSON representation
Creation of a basic poll application
- Host: GitHub
- URL: https://github.com/ks-avinash/python-django-polls-app
- Owner: ks-avinash
- License: gpl-2.0
- Created: 2014-09-12T17:16:39.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-12T19:27:24.000Z (over 10 years ago)
- Last Synced: 2024-10-16T20:09:40.742Z (2 months ago)
- Language: Python
- Size: 297 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Python-Django-Polls-App
=======================Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.
Developed by a fast-moving online-news operation, Django was designed to handle two challenges: the intensive deadlines of a newsroom and the stringent requirements of the experienced Web developers who wrote it. It lets you build high-performing, elegant Web applications quickly.Creation of a basic poll application
It’ll consist of two parts:
- A public site that lets people view polls and vote in them.
- An admin site that lets you add, change and delete polls.
Requirements
- Install Python(the right version)
- Install the pip package manager
- Install virtualenv
- Install Django
Important Commands
- django-admin.py startproject projectname
- python manage.py runserver
- django-admin.py startapp
- python manage.py syncdb
- python manage.py sqlmigrate polls 0001
- python manage.py shell
- python manage.py migrate
- python manage.py makemigration
- python manage.py runserver 8080