diff options
Diffstat (limited to 'papillon/local_settings.py.sample')
-rw-r--r-- | papillon/local_settings.py.sample | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/papillon/local_settings.py.sample b/papillon/local_settings.py.sample index 8070842..e2b181b 100644 --- a/papillon/local_settings.py.sample +++ b/papillon/local_settings.py.sample @@ -11,8 +11,13 @@ PROJECT_PATH = os.path.dirname(os.path.abspath(__file__)) # Make this unique, and don't share it with anybody. SECRET_KEY = 'replace_this_with_something_else' -# if you have set an EXTRA_URL set the full path -EXTRA_URL = '' +# URL that handles the media served from MEDIA_ROOT. +# Example: "http://media.lawrence.com" +MEDIA_URL = '/static/' + +# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a +# trailing slash. +ADMIN_MEDIA_PREFIX = '/static/admin/' TINYMCE_URL = 'http://localhost/tinymce/' MAX_COMMENT_NB = 10 # max number of comments by poll - 0 to disable comments |