CoolFace
Apppublic

kasaam89/Census-Income-Classifier

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
start.sh10 linesDownload Raw Back to root
1#!/bin/bash2 3# Start FastAPI backend in the background4echo "Starting FastAPI backend..."5uvicorn main:app --host 0.0.0.0 --port 8000 &6 7# Start Streamlit frontend8echo "Starting Streamlit frontend..."9streamlit run app.py --server.port 7860 --server.address 0.0.0.010