-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsettings.py
34 lines (28 loc) · 953 Bytes
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"""
© Ocado Group
Created on 14/03/2025 at 15:34:28(+00:00).
The min settings required to manage the `codeforlife.user` Django app-module.
"""
# pylint: disable-next=wildcard-import,unused-wildcard-import
from codeforlife.settings import *
# NOTE: This is only used locally for testing purposes.
SECRET_KEY = "XTgWqMlZCMI_E5BvCArkif9nrJIIhe_6Ic6Q_UcWJDk="
INSTALLED_APPS = [
"django.contrib.admin",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
"django.contrib.sites",
"codeforlife.user",
"game", # TODO: remove this
"common", # TODO: remove this
"portal", # TODO: remove this
]
MIDDLEWARE = [
"codeforlife.middlewares.SessionMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
]
ROOT_URLCONF = "codeforlife.user.urls"