gpt1 / start.sh
huynhtrungkiet09032005's picture
Upload 15 files
e19594f verified
raw
history blame
346 Bytes
#!/bin/bash
echo "πŸš€ Starting Vietnamese Poetry Generator..."
echo "πŸ“¦ Installing dependencies..."
# Install dependencies
pip install -r requirements.txt
echo "βœ… Dependencies installed!"
echo "🌟 Starting FastAPI server..."
# Start the server
python -c "import uvicorn; uvicorn.run('app:app', host='0.0.0.0', port=7860, reload=True)"