Beautifully crafted timelines that are easy and intuitive to use. http://timeline.knightlab.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
255 B
14 lines
255 B
11 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'
|