From: Seth Woodworth Date: Tue, 8 Jan 2013 00:47:56 +0000 (-0500) Subject: adding initial database config docs X-Git-Tag: release-20150131~587 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bd4241f039a8330d235a7d66755f27eccc183cd0;p=oweals%2Fkarmaworld.git adding initial database config docs --- 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`` + +