mirror of
https://github.com/nihilvux/bancho.py.git
synced 2025-09-16 10:38:39 -07:00
11 lines
231 B
Bash
11 lines
231 B
Bash
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
|
|
# Checking MySQL TCP connection
|
|
scripts/wait-for-it.sh --timeout=60 $DB_HOST:$DB_PORT
|
|
|
|
# Checking Redis connection
|
|
scripts/wait-for-it.sh --timeout=60 $REDIS_HOST:$REDIS_PORT
|
|
|
|
python main.py
|