mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
6 lines
207 B
Bash
Executable File
6 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "${NETALERTX_APP}" || exit 1
|
|
|
|
exec python3 $(cat /services/config/python/backend-extra-launch-parameters 2>/dev/null) -m server > >(tee /app/log/stdout.log) 2> >(tee /app/log/stderr.log >&2)
|