Spaces:
Sleeping
Sleeping
File size: 449 Bytes
a831961 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Configuration for Hugging Face Spaces deployment
runtime: python
python_version: "3.9"
# Environment variables for the deployment
env:
PYTHONPATH: "."
PORT: "7860"
# Startup command - HF Spaces will use app.py by default
startup_command: "python app.py"
# Health check endpoint
health_check:
path: "/health"
interval: 30s
timeout: 10s
retries: 3
# Resource limits
resources:
memory: "2Gi"
cpu: "1000m"
|