Coverage for tests/test_app/settings.py: 100%
30 statements
« prev ^ index » next coverage.py v7.4.3, created at 2024-03-12 13:49 +0000
« prev ^ index » next coverage.py v7.4.3, created at 2024-03-12 13:49 +0000
1"""Django settings for napse project.
3Generated by 'django-admin startproject' using Django 3.2.15.
5For more information on this file, see
6https://docs.djangoproject.com/en/3.2/topics/settings/
8For the full list of settings and their values, see
9https://docs.djangoproject.com/en/3.2/ref/settings/
10"""
12from pathlib import Path
14import environ
16# Build paths inside the project like this: BASE_DIR / 'subdir'.
17BASE_DIR = Path(__file__).resolve().parent
18env = environ.Env()
19env.read_env(str(BASE_DIR / ".env"))
20# Quick-start development settings - unsuitable for production
21# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/
23# SECURITY WARNING: keep the secret key used in production secret!
24SECRET_KEY = "django-insecure-secret" # noqa: S105
26# SECURITY WARNING: don't run with debug turned on in production!
27DEBUG = True
29ALLOWED_HOSTS = ["localhost", "127.0.0.1", "django"]
30CORS_ALLOWED_ORIGINS = [f"http://{host}:8888" for host in ALLOWED_HOSTS]
31CSRF_TRUSTED_ORIGINS = [f"http://{host}:8888" for host in ALLOWED_HOSTS]
33# Application definition
35INSTALLED_APPS = [
36 "django.contrib.admin",
37 "django.contrib.auth",
38 "django.contrib.contenttypes",
39 "django.contrib.sessions",
40 "django.contrib.messages",
41 "django.contrib.staticfiles",
42 # Utils
43 "django_extensions",
44 # Napse
45 "django_napse.core",
46 "django_napse.simulations",
47 "django_napse.auth",
48 # Required
49 "django_celery_beat",
50 "corsheaders",
51 "rest_framework",
52 "rest_framework_api_key",
53 "drf_spectacular",
54]
56MIDDLEWARE = [
57 "debug_toolbar.middleware.DebugToolbarMiddleware",
58 "django.middleware.security.SecurityMiddleware",
59 "django.contrib.sessions.middleware.SessionMiddleware",
60 "corsheaders.middleware.CorsMiddleware",
61 "django.middleware.common.CommonMiddleware",
62 "django.middleware.csrf.CsrfViewMiddleware",
63 "django.contrib.auth.middleware.AuthenticationMiddleware",
64 "django.contrib.messages.middleware.MessageMiddleware",
65 "django.middleware.clickjacking.XFrameOptionsMiddleware",
66]
68ROOT_URLCONF = "tests.test_app.urls"
70TEMPLATES = [
71 {
72 "BACKEND": "django.template.backends.django.DjangoTemplates",
73 "DIRS": [],
74 "APP_DIRS": True,
75 "OPTIONS": {
76 "context_processors": [
77 "django.template.context_processors.debug",
78 "django.template.context_processors.request",
79 "django.contrib.auth.context_processors.auth",
80 "django.contrib.messages.context_processors.messages",
81 ],
82 },
83 },
84]
86WSGI_APPLICATION = "wsgi.application"
89# Database
90# https://docs.djangoproject.com/en/3.2/ref/settings/#databases
92DATABASES = {
93 "default": {
94 "ENGINE": "django.db.backends.sqlite3",
95 "NAME": BASE_DIR / "db.sqlite3",
96 },
97}
100# Password validation
101# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators
103AUTH_PASSWORD_VALIDATORS = [
104 {
105 "NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator",
106 },
107 {
108 "NAME": "django.contrib.auth.password_validation.MinimumLengthValidator",
109 },
110 {
111 "NAME": "django.contrib.auth.password_validation.CommonPasswordValidator",
112 },
113 {
114 "NAME": "django.contrib.auth.password_validation.NumericPasswordValidator",
115 },
116]
119# Internationalization
120# https://docs.djangoproject.com/en/3.2/topics/i18n/
122LANGUAGE_CODE = "en-us"
124TIME_ZONE = "UTC"
126USE_I18N = True
128USE_L10N = True
130USE_TZ = True
133# Static files (CSS, JavaScript, Images)
134# https://docs.djangoproject.com/en/3.2/howto/static-files/
136STATIC_URL = "/static/"
138# Default primary key field type
139# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
141DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
143# Napse settings
145NAPSE_SECRETS_FILE_PATH = BASE_DIR / "secrets.json"
146NAPSE_ENV_FILE_PATH = BASE_DIR / ".env"
147CELERY_BROKER_URL = "redis://localhost:6379"
148CELERY_BEAT_SCHEDULER = "django_celery_beat.schedulers.DatabaseScheduler"
150REST_FRAMEWORK = {
151 "DEFAULT_PERMISSION_CLASSES": [
152 "django_napse.api.custom_permissions.HasAdminPermission",
153 ],
154 "DEFAULT_SCHEMA_CLASS": "drf_spectacular.openapi.AutoSchema",
155}
157SPECTACULAR_SETTINGS = {
158 "TITLE": "Django Napse API",
159 "DESCRIPTION": "List and description of all endpoints. This API documentation is essentially generated automatically. "
160 "It may therefore contain errors. If you see an error, please open an issue, and if you would like "
161 "to improve it, please make a contribution.",
162 "VERSION": "0.0.1",
163 "SERVE_INCLUDE_SCHEMA": False,
164 # OTHER SETTINGS
165}