File size: 373 Bytes
46bfbfe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/usr/bin/env python3
"""
Deployment script for Render deployment
"""
import os
import sys
from src.app import main
if __name__ == "__main__":
# Set environment variables for production
os.environ.setdefault("GRADIO_SERVER_NAME", "0.0.0.0")
os.environ.setdefault("GRADIO_SERVER_PORT", os.environ.get("PORT", "7860"))
# Launch the application
main()
|