Skip to content

Instantly share code, notes, and snippets.

@rshipp
Last active August 29, 2015 14:05
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 rshipp/51ec5a69070e37b8bd4a to your computer and use it in GitHub Desktop.
Save rshipp/51ec5a69070e37b8bd4a to your computer and use it in GitHub Desktop.
Example secrets files for acmx_website suitable for development and testing purposes.
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# This is an example secrets file suitable for development and testing purposes.
# Put it in `acmx_website/acmx_website/secrets.py`.
SECRET_KEY = 'a'
DEBUG = True
TEMPLATE_DEBUG = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment