aboutsummaryrefslogtreecommitdiff
path: root/chishop/production_example.py
diff options
context:
space:
mode:
Diffstat (limited to 'chishop/production_example.py')
-rw-r--r--chishop/production_example.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/chishop/production_example.py b/chishop/production_example.py
new file mode 100644
index 0000000..b64623e
--- /dev/null
+++ b/chishop/production_example.py
@@ -0,0 +1,18 @@
1from conf.default import *
2import os
3
4DEBUG = False
5TEMPLATE_DEBUG = DEBUG
6
7ADMINS = (
8 ('chishop', 'example@example.org'),
9)
10
11MANAGERS = ADMINS
12
13DATABASE_ENGINE = 'postgresql_psycopg2'
14DATABASE_NAME = 'chishop'
15DATABASE_USER = 'chishop'
16DATABASE_PASSWORD = 'chishop'
17DATABASE_HOST = ''
18DATABASE_PORT = ''