hanyang-chatbot / start.sh
restvatikan's picture
Upload 31 files
5063d6d verified
raw
history blame
484 Bytes
#!/bin/bash
# 1. DBκ°€ μ—†μœΌλ©΄(λ˜λŠ” μƒˆλ‘œ μ‹œμž‘ν•  λ•Œλ§ˆλ‹€) 데이터 적재 μ‹€ν–‰
echo "πŸš€ Building Vector DB and Index..."
python ingest.py
# 2. FastAPI μ„œλ²„λ₯Ό λ°±κ·ΈλΌμš΄λ“œ(&)둜 μ‹€ν–‰
echo "πŸš€ Starting Backend Server..."
python server.py &
# 3. μ„œλ²„ μ•ˆμ •ν™”λ₯Ό μœ„ν•΄ 10초 λŒ€κΈ° (λͺ¨λΈ λ‹€μš΄λ‘œλ“œ μ‹œκ°„ κ³ λ €)
sleep 10
# 4. Streamlit μ•± μ‹€ν–‰
echo "πŸš€ Starting Frontend App..."
streamlit run app.py --server.port=7860 --server.address=0.0.0.0