Spaces:
Paused
Paused
File size: 231 Bytes
8e453ef | 1 2 3 4 5 6 7 | import os
import subprocess
if __name__ == "__main__":
# Delegate to Streamlit entrypoint
subprocess.run(["streamlit", "run", "streamlit_app.py", "--server.port", os.getenv("PORT", "7860"), "--server.address", "0.0.0.0"])
|