34 lines
909 B
Django/Jinja
34 lines
909 B
Django/Jinja
#-*- coding: utf-8 -*-
|
|
|
|
"""
|
|
Django local settings for the postorious project.
|
|
"""
|
|
|
|
|
|
DEBUG = True
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
ADMINS = ()
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
'NAME': 'postorius',
|
|
'USER': 'postorius',
|
|
'PASSWORD': '{{ lists_dev_ps_db_pass }}',
|
|
'HOST': 'localhost',
|
|
'PORT': '',
|
|
}
|
|
}
|
|
|
|
# URL that handles the media served from STATIC_ROOT. Make sure to use a
|
|
STATIC_URL = '/postorius/static/'
|
|
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
|
|
MEDIA_URL = '/postorius/media/'
|
|
|
|
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
|
|
# trailing slash.
|
|
# Examples: "http://foo.com/media/", "/media/".
|
|
ADMIN_MEDIA_PREFIX = '/postorius/static/admin/'
|
|
|
|
# Make this unique, and don't share it with anybody.
|
|
SECRET_KEY = '$!-7^wl#wiifjbh)5@f7ji%x!vp7s1vwt26hxvixq0u0'
|