SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit f2c1eaf5 authored by Jorran de Wit's avatar Jorran de Wit
Browse files

Add staging_release settings

parent 48175b54
No related branches found
No related tags found
No related merge requests found
from .base import *
# This file is meant for the server used for the release branches
#
# THE MAIN THING HERE
DEBUG = False
# Static and media
STATIC_URL = '/static/'
STATIC_ROOT = '/home/jdewit/webapps/scipost_static/'
MEDIA_URL = '/media/'
MEDIA_ROOT = '/home/jdewit/webapps/scipost_media/'
WEBPACK_LOADER = {
'DEFAULT': {
'CACHE': True,
'BUNDLE_DIR_NAME': '/home/jdewit/webapps/scipost_static/bundles/',
}
}
# Error reporting
ADMINS = MANAGERS = (('J. de Wit', 'jorrandewit@outlook.com'), )
# Cookies
SESSION_COOKIE_SECURE = True
CSRF_COOKIE_SECURE = True
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment