22 lines
572 B
Python
22 lines
572 B
Python
"""
|
|
Django development settings for the cof project.
|
|
The settings that are not listed here are imported from .common
|
|
"""
|
|
from .common import * # NOQA
|
|
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"]
|
|
|
|
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"
|
|
LOGOUT_REDIRECT_URL = "bds:home"
|