nailgun static dir

This commit is contained in:
Nikolay Markov 2012-09-07 16:24:54 +04:00 committed by default
parent 860493897e
commit 80be0b4e0c

View File

@ -2,6 +2,7 @@
import posixpath
PROJECT_PATH = posixpath.join(
posixpath.dirname(posixpath.abspath(__file__)),
".."
@ -10,6 +11,7 @@ PROJECT_PATH = posixpath.join(
DATABASE_PATH = posixpath.join(PROJECT_PATH, 'nailgun.sqlite')
DATABASE_ENGINE = 'sqlite:///%s' % DATABASE_PATH
STATIC_DIR = posixpath.join(PROJECT_PATH, "static")
TEMPLATE_DIR = posixpath.join(PROJECT_PATH, "static")