papjuli / my-first-blog

Following the Djangogirls tutorial

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Following the Djangogirls tutorial


Languages

Language:Python 62.2%Language:HTML 29.1%Language:CSS 8.7%