passerelle/config_example.py

15 lines
232 B
Python

DEBUG = True
SECRET_KEY = 'changeme'
MEDIA_ROOT = 'media'
STATIC_ROOT = 'collected-static'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'passerelle.sqlite3',
}
}