2012-04-24 22:15:38 +04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import os
|
2012-04-27 01:41:20 +04:00
|
|
|
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
STATIC_FILES_ROOT = os.path.join(ROOT_DIR, 'static')
|
|
|
|
|
|
|
|
#####################################################
|
|
|
|
# You can start editing settings after this comment #
|
|
|
|
#####################################################
|
2012-04-24 22:15:38 +04:00
|
|
|
|
2012-04-27 01:41:20 +04:00
|
|
|
# debug will get you error message and auto reload
|
|
|
|
# don't set this to True in production
|
2012-04-24 22:15:38 +04:00
|
|
|
DEBUG = True
|
2012-04-27 01:41:20 +04:00
|
|
|
|
|
|
|
# absolute path where the paste files should be store
|
|
|
|
# default in projectdirectory/static/content/
|
|
|
|
# use "/" even under Windows
|
|
|
|
PASTE_FILES_ROOT = os.path.join(STATIC_FILES_ROOT, 'content')
|