kpsul/cof/settings/bds_prod.py

23 lines
572 B
Python
Raw Permalink Normal View History

"""
Django development settings for the cof project.
The settings that are not listed here are imported from .common
"""
from .common import * # NOQA
2020-08-28 18:18:54 +02:00
from .common import INSTALLED_APPS
# ---
# BDS-only Django settings
# ---
ALLOWED_HOSTS = ["bds.ens.fr", "www.bds.ens.fr", "dev.cof.ens.fr"]
INSTALLED_APPS += ["bds", "events", "clubs"]
2017-08-08 01:24:00 +02:00
2020-08-24 14:56:03 +02:00
STATIC_ROOT = "/srv/bds.ens.fr/public/gestion2/static"
STATIC_URL = "/gestion2/static/"
MEDIA_ROOT = "/srv/bds.ens.fr/gestion2/media"
MEDIA_URL = "/gestion2/media/"
LOGIN_REDIRECT_URL = "bds:home"
2020-07-30 12:04:04 +02:00
LOGOUT_REDIRECT_URL = "bds:home"