https://github.com/xta/django2_py3_hello_world
djangoproject 2.0 tutorial
https://github.com/xta/django2_py3_hello_world
Last synced: 10 months ago
JSON representation
djangoproject 2.0 tutorial
- Host: GitHub
- URL: https://github.com/xta/django2_py3_hello_world
- Owner: xta
- Created: 2018-03-14T21:51:04.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-14T21:55:40.000Z (about 8 years ago)
- Last Synced: 2025-03-16T14:36:55.666Z (about 1 year ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# basic Django site
## Note: for development/learning only, NOT meant for production
* Python3
* Django v2.0.3
* sqlite
based on https://docs.djangoproject.com/en/2.0/intro
## Setup
python manage.py migrate
## Usage
python manage.py runserver
open http://localhost:8000/polls/
## admin
open http://localhost:8000/admin/
## Run tests
python manage.py test polls