Skip to content

Instantly share code, notes, and snippets.

@erikcw
Created June 8, 2012 14:16
Show Gist options
  • Save erikcw/2895819 to your computer and use it in GitHub Desktop.
Save erikcw/2895819 to your computer and use it in GitHub Desktop.
Local dev settings override -- put in bootiq/bootiq/local_settings.py
import os, sys
ROOT_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..')
DEBUG = True
TEMPLATE_DEBUG = DEBUG
CRISPY_FAIL_SILENTLY = not DEBUG
SOUTH_TESTS_MIGRATE = False
# Run local files
STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage'
STATIC_URL = '/static/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment