diff --git a/config.py.example b/config.py.example index 2d20b116fc63088949535a6aa3dca1b351bf1c81..9b6764099f1e6df91551f3546ebda29668206db2 100755 --- a/config.py.example +++ b/config.py.example @@ -8,7 +8,7 @@ app_secret = '' ## You will need to use absolute paths! # Base directory. You need to set this again in schilder.wsgi if you use WSGI. -basedir = '/home/dave/Development/schildergenerator' +basedir = '/path/to/schildergenerator' # Temp directory for imagemagick/pdflatex work files (needs to be writeable) tmpdir = '/tmp' diff --git a/schilder.wsgi.example b/schilder.wsgi.example index 52e391edea0b4a9581def167b591ddd139a0895f..09778924e86b0e914a447261964e7719ba37c463 100755 --- a/schilder.wsgi.example +++ b/schilder.wsgi.example @@ -1,6 +1,6 @@ import logging, sys -path = '/path/to/schilder' +path = '/path/to/schildergenerator' if path not in sys.path: sys.path.append(path)