database.rst 491 B

12345678910111213141516171819202122
  1. Database
  2. ========
  3. So you've checked out this git repo, and you've set up your virtualenv.
  4. Next you will want to setup your database.
  5. Local development db
  6. --------------------
  7. We use `south <http://south.aeracode.org/wiki/QuickStartGuide>`_ to manage our
  8. database migrations.
  9. First run a standard django syncdb
  10. ./manage.py syncdb
  11. And when asked, create a superuser to log into the django-admin.
  12. TODO: Do we need to convert_to_south, or do an initial ``schemamigration --fake``