We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb69679 commit ef5e362Copy full SHA for ef5e362
api/core/config.py
@@ -5,11 +5,11 @@ class Settings(BaseSettings):
5
"""Application settings."""
6
7
PROJECT_NAME: str = "Hero API"
8
- DATABASE_URL: str = "postgresql+asyncpg://postgres:postgres@localhost:5432/heroes"
+ DATABASE_URL: str
9
DEBUG: bool = True
10
11
# JWT Settings
12
- JWT_SECRET: str = "your-secret-key" # Change in production
+ JWT_SECRET: str # Change in production
13
JWT_ALGORITHM: str = "HS256"
14
JWT_EXPIRATION: int = 30 # minutes
15
0 commit comments