mirror of
https://github.com/norohind/SquadsActivityMonitor.git
synced 2025-04-12 13:00:02 +03:00
15 lines
225 B
Bash
Executable File
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 $@
|