Update: apps config
This commit is contained in:
parent
d9dfd42d1a
commit
b643ea154f
1 changed files with 13 additions and 1 deletions
|
@ -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 = [
|
||||||
|
|
Loading…
Reference in a new issue