Skip to content

Commit cd12b03

Browse files
committed
fix: Deleted unnused enviroment variable
1 parent 3aad721 commit cd12b03

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

app/config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ class Settings(BaseSettings):
1515
REFRESH_TOKEN_EXPIRE_DAYS: int = 0
1616
JWT_ACCESS_SECRET_KEY: str = ""
1717
JWT_REFRESH_SECRET_KEY: str = ""
18-
SECURE: bool = False # Set to True in production
1918

2019
class Config:
2120
env_file = ".env"

template.env

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@ ALGORITHM = 'your_preferred_algorithm' # e.g., 'HS256'
1717
ACCESS_TOKEN_EXPIRE_MINUTES = 'access_token_expire_minutes'
1818
REFRESH_TOKEN_EXPIRE_DAYS = 'refresh_token_expire_days'
1919
JWT_ACCESS_SECRET_KEY = 'your_access_secret_key' # Need to be equal to the one in other services
20-
JWT_REFRESH_SECRET_KEY = 'your_refresh_secret_key'
21-
SECURE = 'False' # Set to True in production
20+
JWT_REFRESH_SECRET_KEY = 'your_refresh_secret_key'

0 commit comments

Comments
 (0)