File size: 222 Bytes
c58df45
 
 
 
 
 
 
1
2
3
4
5
6
7
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"])