We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c48491 commit a60a256Copy full SHA for a60a256
{{cookiecutter.project_slug}}/backend/app/app/core/config.py
@@ -8,7 +8,7 @@ class Settings(BaseSettings):
8
API_V1_STR: str = "/api/v1"
9
SECRET_KEY: str = secrets.token_urlsafe(32)
10
# 60 minutes * 24 hours * 8 days = 8 days
11
- ACCESS_TOKEN_EXPIRE_MINUTES: int = 60 * 24 * 8
+ ACCESS_TOKEN_EXPIRE_SECONDS: int = 60 * 24 * 8
12
REFRESH_TOKEN_EXPIRE_SECONDS: int = 60 * 60 * 24 * 30
13
SERVER_NAME: str
14
SERVER_HOST: AnyHttpUrl
0 commit comments