Beautifully crafted timelines that are easy and intuitive to use. http://timeline.knightlab.com/
14 lines
255 B
14 lines
255 B
12 years ago
|
"""Local settings and globals."""
|
||
|
import sys
|
||
|
from os.path import normpath, join
|
||
|
from .base import *
|
||
|
|
||
|
# Import secrets
|
||
|
sys.path.append(
|
||
|
abspath(join(PROJECT_ROOT, '../secrets/buzz/stg'))
|
||
|
)
|
||
|
|
||
|
from secrets import *
|
||
|
|
||
|
# Set static URL
|
||
|
STATIC_URL = '/static'
|