Skip to content

Release 1.2.0

Compare
Choose a tag to compare
@mmclark mmclark released this 20 Jul 00:40

Version 1.2.0 of SEED is primarily focused on "under the hood" updates. The first primary change is a code re-organization to conform more closely to Django best practices. The second major change is upgrading the project to use Django v1.7.

Upgrading an existing development instance can be done using the following steps:

  • Run ./manage.py migrate to make sure you're up to date with the
    old South migrations
  • Pull from origin
  • Change your environment so:
    • DJANGO_SETTINGS_MODULE=config.settings.dev
  • Copy BE/settings/local_untracked.py into config/settings
  • Run ./manage.py shell to confirm that settings are (basically)
    correct.
  • Activate the virtualenv
  • pip install -U -r requirements/local.txt
  • ./manage.py migrate audit_logs --fake
  • ./manage.py migrate data_importer --fake
  • ./manage.py migrate