SquadsActivityMonitor/entrypoint.sh

12 lines
150 B
Bash
Executable File

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