Update: apps config

This commit is contained in:
Aroy-Art 2023-10-21 16:56:36 +02:00
parent d9dfd42d1a
commit b643ea154f
Signed by: Aroy
GPG key ID: DB9689E9391DD156

View file

@ -45,12 +45,24 @@ CSRF_TRUSTED_ORIGINS = ['http://localhost:85', 'http://127.0.0.1', 'https://' +
# Application definition # Application definition
INSTALLED_APPS = [ INSTALLED_APPS = [
# Django core apps
'django.contrib.admin', 'django.contrib.admin',
'django.contrib.auth', 'django.contrib.auth',
'django.contrib.contenttypes', 'django.contrib.contenttypes',
'django.contrib.sessions', 'django.contrib.sessions',
'django.contrib.messages', 'django.contrib.messages',
'django.contrib.staticfiles', 'django.contrib.staticfiles',
# Pip module libraries
'rest_framework',
'django_cleanup.apps.CleanupConfig',
"django_celery_beat",
"django_celery_results",
# Gallery Archivist apps
'sites.furaffinity'
] ]
MIDDLEWARE = [ MIDDLEWARE = [