summaryrefslogtreecommitdiff
path: root/stapp/production.py
diff options
context:
space:
mode:
Diffstat (limited to 'stapp/production.py')
-rw-r--r--stapp/production.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/stapp/production.py b/stapp/production.py
index 238f678..f902bd6 100644
--- a/stapp/production.py
+++ b/stapp/production.py
@@ -1,2 +1,15 @@
-
from stapp.settings import *
+DEBUG=False
+TEMPLATE_DEBUG=DEBUG$
+
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
+ 'NAME': 'stapp', # Or path to database file if using sqlite3.
+ 'USER': 'stapp', # Not used with sqlite3.
+ 'PASSWORD': 'pp@ssw0rd', # 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.
+ }
+}