Reworked variable system, no longer hardcoded

This commit is contained in:
serversdwn
2025-11-25 20:39:40 +00:00
parent d692de8f5d
commit 8d5ad6a809
10 changed files with 100 additions and 22 deletions

14
backend/.env.example Normal file
View File

@@ -0,0 +1,14 @@
# Database Configuration
DATABASE_URL=sqlite:///./tesseract.db
# API Configuration
API_TITLE=Tesseract - Nested Todo Tree API
API_DESCRIPTION=API for managing deeply nested todo trees
API_VERSION=1.0.0
# CORS Configuration (comma-separated list of allowed origins)
CORS_ORIGINS=http://localhost:5173,http://localhost:3000
# Server Configuration
HOST=0.0.0.0
PORT=8000