[V0.5] Working application with all 4 screens as of yet.
This commit is contained in:
@@ -6,8 +6,14 @@ DOTENV_PATH = os.path.join(os.path.dirname(__file__), "../.env")
|
||||
|
||||
|
||||
class Settings(BaseSettings):
|
||||
# Database settings - reads DB_URL from environment or .env
|
||||
DB_URL: str = "postgresql://maia:maia@localhost:5432/maia"
|
||||
# Database settings - reads from environment or .env
|
||||
DB_PORT: int = 5432
|
||||
DB_NAME: str = "maia"
|
||||
DB_HOST: str
|
||||
DB_USER: str
|
||||
DB_PASSWORD: str
|
||||
|
||||
DB_URL: str = ""
|
||||
|
||||
# Redis settings - reads REDIS_URL from environment or .env, also used for Celery.
|
||||
REDIS_URL: str = "redis://localhost:6379/0"
|
||||
|
||||
Reference in New Issue
Block a user