snipt/local_settings-template.py

23 lines
419 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': {
'ENGINE': 'sqlite3',
'NAME': '/path/to/db/',
'USER': '',
'PASSWORD': '',
'HOST': '',
'PORT': '',
}
}
VIRTUALENV_PATH = '/path/to/virtualenv/'