SamadhiDBS's picture
Update run.py
80d4fc5 verified
raw
history blame contribute delete
446 Bytes
"""Run the Smart Analytics Copilot"""
import subprocess
import sys
def main():
print("πŸš€ Starting Smart Analytics Copilot...")
print("πŸ“Š Your dashboard will open in your browser")
print("")
#run streamlit
subprocess.run([
sys.executable, "-m", "streamlit", "run",
"app/main.py",
"--server.port", "8501",
"--server.address", "localhost"
])
if __name__ == "__main__":
main()