customeragent-api / server /scripts /render-build.sh
anasraza526's picture
Clean deploy to Hugging Face
ac90985
#!/bin/bash
# Install dependencies
pip install -r requirements.txt
# Run database migrations
alembic upgrade head
# Download NLTK data
python -c "import nltk; nltk.download('punkt'); nltk.download('stopwords')"
echo "Build completed successfully!"