Revision: 11107
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at January 24, 2009 11:26 by trey
Initial Code
import os.path
MEDIA_ROOT = os.path.join(os.path.dirname(__file__), "public/static/")
TEMPLATE_DIRS = (
os.path.join(os.path.dirname(__file__), "templates"),
)
FORCE_LOWERCASE_TAGS = True
SESSION_COOKIE_NAME = 'your_project'
try:
from local_settings import *
except ImportError:
pass
Initial URL
Initial Description
Initial Title
Things I like to add to settings.py
Initial Tags
django
Initial Language
Python