aboutsummaryrefslogtreecommitdiffstats
path: root/python/webface_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/webface_config.py')
-rw-r--r--python/webface_config.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/python/webface_config.py b/python/webface_config.py
new file mode 100644
index 00000000..3d6db049
--- /dev/null
+++ b/python/webface_config.py
@@ -0,0 +1,20 @@
+
+import os
+import subprocess
+
+basedir = os.path.abspath(os.path.dirname(__file__))
+
+class Config(object):
+ SQLALCHEMY_DATABASE_URI = os.environ.get('DATABASE_URI') or \
+ 'sqlite:///' + os.path.join(basedir, 'fatcat_dev.sqlite')
+ SQLALCHEMY_TRACK_MODIFICATIONS = False
+ GIT_REVISION = subprocess.check_output(["git", "describe", "--always"]).strip()
+ # This is, effectively, the QA/PROD flag
+ FATCAT_DOMAIN = "qa.fatcat.wiki"
+ ELASTIC_BACKEND = "https://search.fatcat.wiki"
+ ELASTIC_INDEX = "fatcat"
+
+ # "Event more verbose" debug options. SECRET_KEY is bogus.
+ #SQLALCHEMY_ECHO = True
+ #SECRET_KEY = "kuhy0284hflskjhg01284"
+ #DEBUG = True