-
Notifications
You must be signed in to change notification settings - Fork 3
/
local_settings_template.py
25 lines (21 loc) · 1.07 KB
/
local_settings_template.py
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
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': '', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # 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.
}
}
ADMINS = (
# ('Your Name', '[email protected]'),
)
# Make this unique (you can generate one at <http://www.miniwebtool.com/django-secret-key-generator/>),
# and don't share it with anybody.
SECRET_KEY = 'pv$ph5&*q3$flq14%dpb-liko=&%mhh_=%hhnc5$tz&153zg_@'
BLOG_NAME = "JAB default blog"
BLOG_DESCRIPTION = "Just another JAB blog"
BLOG_AUTHOR = "Joe Blogs"
BLOG_AUTHOR_EMAIL = "[email protected]" # Make blank if you don't want it
BLOG_AUTHOR_TWITTER = "a_twitter_id" # Make blank if you don't want it