LifeGuide / start.sh
Shouvik599
added feature improvements
7ae27cd
raw
history blame contribute delete
512 Bytes
#!/bin/bash
# Use the absolute path relative to the app directory
CHROMA_PATH="./chroma_db"
if [ ! -d "$CHROMA_PATH" ]; then
echo "πŸ“¦ ChromaDB not found. Starting ingestion..."
python ingest.py
else
echo "βœ… ChromaDB found. Skipping ingestion."
fi
echo "πŸš€ Starting FastAPI server with concurrency..."
# --workers 2 allows two simultaneous processes
# --timeout-keep-alive is increased for slow LLM responses
exec uvicorn app:app --host 0.0.0.0 --port 7860 --workers 2 --timeout-keep-alive 60