This commit is contained in:
2026-03-29 20:52:57 -05:00
parent a97c3a5b57
commit cf155183f2
102 changed files with 55674 additions and 0 deletions

8
render.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
# Install system dependencies needed for FPDF/Pillow if necessary
# Render usually has these, but just in case:
# apt-get update && apt-get install -y libgl1
# Start the application using uvicorn
# We use the $PORT variable provided by Render
uvicorn app:app --host 0.0.0.0 --port $PORT