File size: 337 Bytes
dc273c7
9111274
 
 
 
 
 
 
dc273c7
9111274
 
 
dc273c7
6261f03
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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