SquadsActivityMonitor/entrypoint.sh
2023-10-30 20:01:53 +03:00

15 lines
225 B
Bash
Executable File

#!/bin/sh
set -eu
echo "Generating uwsgi config"
python3 generate_uswgi_config.py
if [ "$IS_WEB" = "true" ]; then
echo "Running web"
exec uwsgi -c /tmp/uwsgi.ini
fi
echo "Running collector"
exec python main.py $@