Update OTP generation interval, enhance SMS sending functionality, and add age validation for temporary user registration
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 1m50s

This commit is contained in:
2025-04-19 16:18:45 +05:00
parent f77779a84f
commit c006525aaa
5 changed files with 92 additions and 15 deletions

View File

@ -205,8 +205,7 @@ AUTH_PASSWORD_VALIDATORS = [
LANGUAGE_CODE = "en-us"
TIME_ZONE = "UTC"
TIME_ZONE = "Asia/Atyrau"
USE_I18N = True
USE_TZ = True
@ -293,7 +292,7 @@ STORAGES = {
LOGGING_CONFIG = None
LOGLEVEL = os.environ.get("LOGLEVEL", "WARNING").upper()
LOGLEVEL = os.environ.get("LOGLEVEL", "INFO").upper()
logging.config.dictConfig(
{
@ -321,7 +320,7 @@ logging.config.dictConfig(
},
"loggers": {
"": {
"level": "WARNING",
"level": LOGLEVEL,
"handlers": ["console"],
},
"app": {