Skip to content

Commit

Permalink
Update settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
olmatiash authored Sep 13, 2023
1 parent a780151 commit 2587737
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions taxi_service/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
# See https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = "django-insecure-8ovil3xu6=eaoqd#-#&ricv159p0pypoh5_lgm*)-dfcjqe=yc"
SECRET_KEY = (
"django-insecure-8ovil3xu6=eaoqd#-#&ricv159p0pypoh5_lgm*)-dfcjqe=yc"
)

# SECURITY WARNING: don"t run with debug turned on in production!
DEBUG = True
Expand Down Expand Up @@ -91,13 +93,16 @@
"UserAttributeSimilarityValidator",
},
{
"NAME": "django.contrib.auth.password_validation." "MinimumLengthValidator",
"NAME": "django.contrib.auth.password_validation."
"MinimumLengthValidator",
},
{
"NAME": "django.contrib.auth.password_validation." "CommonPasswordValidator",
"NAME": "django.contrib.auth.password_validation."
"CommonPasswordValidator",
},
{
"NAME": "django.contrib.auth.password_validation." "NumericPasswordValidator",
"NAME": "django.contrib.auth.password_validation."
"NumericPasswordValidator",
},
]

Expand Down

0 comments on commit 2587737

Please sign in to comment.