Spaces:
Runtime error
Runtime error
File size: 155 Bytes
0422c35 | 1 2 3 4 5 6 7 8 | # app.py
from api import app
if __name__ == "__main__":
import os
port = int(os.environ.get("PORT", 7860))
app.run(host="0.0.0.0", port=port)
|