adding initial database config docs
authorSeth Woodworth <seth@sethish.com>
Tue, 8 Jan 2013 00:47:56 +0000 (19:47 -0500)
committerSeth Woodworth <seth@sethish.com>
Tue, 8 Jan 2013 00:47:56 +0000 (19:47 -0500)
docs/source/database.rst [new file with mode: 0644]

diff --git a/docs/source/database.rst b/docs/source/database.rst
new file mode 100644 (file)
index 0000000..88188d6
--- /dev/null
@@ -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 <http://south.aeracode.org/wiki/QuickStartGuide>`_ 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``
+
+