mirror of
https://github.com/norohind/SquadsActivityMonitor.git
synced 2025-04-04 17:30:01 +03:00
12 lines
147 B
Bash
Executable File
12 lines
147 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
|
|
if [ "$IS_WEB" = "true" ]; then
|
|
python3 generate_uswgi_config.py
|
|
exec uwsgi /tmp/uwsgi.ini
|
|
fi
|
|
|
|
exec python main.py $@
|