summaryrefslogtreecommitdiff
path: root/testapp/production.py
diff options
context:
space:
mode:
Diffstat (limited to 'testapp/production.py')
-rw-r--r--testapp/production.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/testapp/production.py b/testapp/production.py
new file mode 100644
index 0000000..2710bdb
--- /dev/null
+++ b/testapp/production.py
@@ -0,0 +1,10 @@
+from project.settings import *
+
+DEBUG=False
+TEMPLATE_DEBUG=DEBUG
+
+DATABASE_ENGINE = 'django.db.backends.mysql'
+DATABASE_NAME = 'online_test'
+DATABASE_USER = 'online_test_user'
+# Imports DATABASE_PASSWORD from testapp/local.py that is not part of git repo
+from testapp.local import DATABASE_PASSWORD \ No newline at end of file