teganmosi commited on
Commit ·
2b330a5
1
Parent(s): f6d0a88
Add default value for secret_key in config.py to prevent startup crash
Browse files
config.py
CHANGED
|
@@ -28,7 +28,7 @@ class Settings(BaseSettings):
|
|
| 28 |
app_name: str = "Aria - Your Spiritual Companion"
|
| 29 |
app_version: str = "1.0.0"
|
| 30 |
debug: bool = False
|
| 31 |
-
secret_key: str
|
| 32 |
algorithm: str = "HS256"
|
| 33 |
access_token_expire_minutes: int = 15
|
| 34 |
|
|
|
|
| 28 |
app_name: str = "Aria - Your Spiritual Companion"
|
| 29 |
app_version: str = "1.0.0"
|
| 30 |
debug: bool = False
|
| 31 |
+
secret_key: str = "your_secret_key_here"
|
| 32 |
algorithm: str = "HS256"
|
| 33 |
access_token_expire_minutes: int = 15
|
| 34 |
|