aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 19:10:38 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 19:10:38 +0200
commit882581abe066f16f14b7cc54776bb7985f2b34c6 (patch)
tree314d2c1420428d2153c33f64d5b3bba631816f58 /conf.py
parentTrying the export to HTML option on Heroku (2). (diff)
downloadnewspipe-882581abe066f16f14b7cc54776bb7985f2b34c6.tar.gz
newspipe-882581abe066f16f14b7cc54776bb7985f2b34c6.tar.bz2
newspipe-882581abe066f16f14b7cc54776bb7985f2b34c6.zip
Trying the export to HTML option on Heroku (3).
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