Update app/core/settings.py
Browse files- app/core/settings.py +1 -1
app/core/settings.py
CHANGED
|
@@ -2,7 +2,7 @@ from pydantic_settings import BaseSettings
|
|
| 2 |
|
| 3 |
class Settings(BaseSettings):
|
| 4 |
PROJECT_NAME:str="Drowsiness detection api"
|
| 5 |
-
DATABASE_URL:str="sqlite:///
|
| 6 |
DEBUG:bool=True
|
| 7 |
class Config:
|
| 8 |
env_file=".env"
|
|
|
|
| 2 |
|
| 3 |
class Settings(BaseSettings):
|
| 4 |
PROJECT_NAME:str="Drowsiness detection api"
|
| 5 |
+
DATABASE_URL: str = "sqlite:////tmp/drowsiness.db"
|
| 6 |
DEBUG:bool=True
|
| 7 |
class Config:
|
| 8 |
env_file=".env"
|