Rebrand: Rename project from Apoklisis to Patherly

This commit is contained in:
Michael Chihlas
2026-01-31 20:07:26 -05:00
parent 40373a835c
commit 06cc83e3fe
9 changed files with 29 additions and 23 deletions

View File

@@ -4,13 +4,13 @@ from typing import Optional
class Settings(BaseSettings):
# Application
APP_NAME: str = "Troubleshooting Decision Tree"
APP_NAME: str = "Patherly"
DEBUG: bool = False
API_V1_PREFIX: str = "/api/v1"
# Database
DATABASE_URL: str = "postgresql+asyncpg://postgres:postgres@localhost:5432/decision_tree"
DATABASE_URL_SYNC: str = "postgresql://postgres:postgres@localhost:5432/decision_tree"
DATABASE_URL: str = "postgresql+asyncpg://postgres:postgres@localhost:5432/patherly"
DATABASE_URL_SYNC: str = "postgresql://postgres:postgres@localhost:5432/patherly"
# JWT Settings
SECRET_KEY: str = "your-secret-key-change-in-production-use-openssl-rand-hex-32"