CoolFace
Apppublic

WilsonPharma/Practitioners-Workload-DB

sourceHugging Faceupdated 4mo agoView on Hugging Face
1likes
run.sh8 linesDownload Raw Back to root
1#!/bin/bash2 3# 1. Start the Backend API in the background (&)4# Replace 'backend.main:app' with the actual path to your FastAPI app5uvicorn backend.main:app --host 0.0.0.0 --port 8000 &6 7# 2. Start the Streamlit Frontend8streamlit run streamlit_app.py --server.port 7860 --server.address 0.0.0.0 --server.headless=true