-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlocal_settings.py.sample
More file actions
35 lines (24 loc) · 973 Bytes
/
local_settings.py.sample
File metadata and controls
35 lines (24 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import os
PROJECT_PATH = os.path.abspath(os.path.dirname(__file__)) + '/'
DEBUG = False
ADMINS = (
)
MANAGERS = ADMINS
DEFAULT_FROM_EMAIL = 'robot@email.com'
DEFAULT_REPLYTO_EMAIL = 'admin@email.com'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'snippify', # Or path to database file if using sqlite3.
'USER': 'snippify', # Not used with sqlite3.
'PASSWORD': 'snippify', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}
MEDIA_URL = 'http://localhost/snippify/media/'
ADMIN_MEDIA_PREFIX = '/media/admin/'
SECRET_KEY = ''
HAYSTACK_WHOOSH_PATH = '/abs/path/tmp/index'
DEV_APPS = [
]