Skip to content

Instantly share code, notes, and snippets.

@haxoza
Created September 28, 2012 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haxoza/3799467 to your computer and use it in GitHub Desktop.
Save haxoza/3799467 to your computer and use it in GitHub Desktop.
100seconds local settings
from common import * #@UnusedWildImport
DEBUG = True
TEMPLATE_DEBUG = DEBUG
MEDIA_ROOT = os.path.join(LOCAL_STATIC_ROOT, 'upload/')
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(SITE_ROOT, '../sqlite.db'),
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment