thery.ai / entrypoint.sh
Testys's picture
removing app
6261f03 verified
raw
history blame contribute delete
337 Bytes
#!/bin/bash
set -e
echo "Starting Redis server..."
# Start Redis in the background
redis-server &
echo "Starting Telegram bot..."
# Start the Telegram bot in the background
python -m src.tele_bot.bot &
echo "Starting FastAPI application..."
# Start FastAPI with Uvicorn
exec uvicorn src.api:app --host 0.0.0.0 --port 7860 --workers 1