Skip to content

Latest commit

 

History

History
30 lines (16 loc) · 573 Bytes

readme.md

File metadata and controls

30 lines (16 loc) · 573 Bytes

Django tutorial

I'm following the Django girls tutorial to create a simple web application (a blog) using Django.

Notes

See notes.md.

Dependencies:

Django

$ pip install django

Starting and stopping the server:

If you are starting it for the first time, you have to create a database first:

$ python manage.py migrate

This creates an sqlite3 database.

To run the server:

$ python manage.py runserver

Stop with Ctrl+C.