Fixed web settings.

This commit is contained in:
Jonathan Piacenti 2015-01-16 08:06:09 -06:00
parent e3944552c5
commit b95ff4e976
4 changed files with 10 additions and 8 deletions

View file

@ -540,7 +540,7 @@ STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(GAME_DIR, "web", "static")
# Directories from which static files will be gathered from.
# Directories from which static files will be gathered.
STATICFILES_DIRS = (
os.path.join(GAME_DIR, "web", "static_overrides"),
os.path.join(EVENNIA_DIR, "web", "static"),)
@ -625,7 +625,9 @@ except ImportError:
#######################################################################
# SECRET_KEY
#######################################################################
# This is the salt for cryptographic hashing used by Django.
# This is the signing key for the cookies generated by Evennia's
# web interface.
#
# It is a fallback for the SECRET_KEY setting in settings.py, which
# is randomly seeded when settings.py is first created. If copying
# from here, make sure to change it!