diff --git a/tldtest/settings.py b/tldtest/settings.py index 40109e3..50733fe 100644 --- a/tldtest/settings.py +++ b/tldtest/settings.py @@ -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/