snipt/local_settings-template.py

23 lines
438 B
Python
Raw Normal View History

2011-06-01 21:50:18 -07:00
# Copy this file to local_settings.py and change it as needed.
DEBUG = True
TEMPLATE_DEBUG = DEBUG
EMAIL_BACKEND = 'postmark.backends.PostmarkBackend'
POSTMARK_API_KEY = ''
2011-06-01 22:49:08 -07:00
SECRET_KEY = ''
2011-06-01 21:50:18 -07:00
DATABASES = {
'default': {
2011-06-01 22:52:44 -07:00
'ENGINE': 'django.db.backends.sqlite3',
2011-06-01 21:50:18 -07:00
'NAME': '/path/to/db/',
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': '',
}
}
VIRTUALENV_PATH = '/path/to/virtualenv/'