8 lines
299 B
Bash
8 lines
299 B
Bash
#!/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 |