This commit is contained in:
Arnold Dechamps 2024-03-26 17:18:08 +01:00
parent 1fecb044ac
commit e61ed784d8
No known key found for this signature in database
GPG key ID: AE66543374E41C89

View file

@ -16,7 +16,6 @@ import config
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/
@ -28,7 +27,6 @@ DEBUG = config.DEBUG
ALLOWED_HOSTS = config.ALLOWED_HOSTS
# Application definition
INSTALLED_APPS = [
@ -74,7 +72,6 @@ TEMPLATES = [
WSGI_APPLICATION = 'tldtest.wsgi.application'
# Database
# https://docs.djangoproject.com/en/3.1/ref/settings/#databases
@ -97,8 +94,6 @@ else:
}
}
# Password validation
# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators
@ -117,7 +112,6 @@ AUTH_PASSWORD_VALIDATORS = [
},
]
# Internationalization
# https://docs.djangoproject.com/en/3.1/topics/i18n/
@ -131,7 +125,6 @@ USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.1/howto/static-files/