An open API service indexing awesome lists of open source software.

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

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