v5Dev / src /run_app.py
AIdeaText's picture
Upload 11 files
88f1e80 verified
raw
history blame contribute delete
222 Bytes
import subprocess
import sys
from setup_logging import setup_logging
if __name__ == "__main__":
setup_logging()
subprocess.run([sys.executable, "-m", "streamlit", "run", "app.py", "--server.runOnSave=true"])