Add Nixpacks configuration files for backend and frontend services; create Coolify deployment guide and Nginx reverse proxy configuration

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-27 20:11:29 +02:00
parent 1c96ae17fc
commit e5b413c79d
5 changed files with 310 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# Nixpacks configuration for the FastAPI backend
[phases.setup]
nixpkgsArchive = "88a9d1386465831607986442fd9c8c0e7a1b2f5"
aptPkgs = ["git"]
[phases.install]
# Nixpacks auto-detects Python and runs pip install -r requirements.txt
[build]
[deploy]
startCommand = "uvicorn backend.app.main:app --host 0.0.0.0 --port 8000"