aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/conf.py b/conf.py
index ecc85d11..01483f10 100644
--- a/conf.py
+++ b/conf.py
@@ -44,6 +44,8 @@ if not ON_HEROKU:
basedir = os.path.abspath(os.path.dirname(__file__))
PATH = os.path.abspath(".")
+
+ WEBZINE_ROOT = PATH + "/pyaggr3g470r/var/export/webzine/"
else:
HTTP_PROXY = ""
@@ -57,6 +59,8 @@ else:
MAIL_ENABLED = False
SQLALCHEMY_DATABASE_URI = os.environ['DATABASE_URL']
+
+ WEBZINE_ROOT = "/tmp/"
CSRF_ENABLED = True
# slow database query threshold (in seconds)
bgstack15