From bd4241f039a8330d235a7d66755f27eccc183cd0 Mon Sep 17 00:00:00 2001 From: Seth Woodworth Date: Mon, 7 Jan 2013 19:47:56 -0500 Subject: [PATCH] adding initial database config docs --- docs/source/database.rst | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 docs/source/database.rst diff --git a/docs/source/database.rst b/docs/source/database.rst new file mode 100644 index 0000000..88188d6 --- /dev/null +++ b/docs/source/database.rst @@ -0,0 +1,22 @@ +Database +======== + +So you've checked out this git repo, and you've set up your virtualenv. +Next you will want to setup your database. + + +Local development db +-------------------- + +We use `south `_ to manage our +database migrations. + +First run a standard django syncdb + + ./manage.py syncdb + +And when asked, create a superuser to log into the django-admin. + +TODO: Do we need to convert_to_south, or do an initial ``schemamigration --fake`` + + -- 2.25.1