mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
12 lines
289 B
Bash
12 lines
289 B
Bash
#!/bin/bash
|
|
#TODO: Fix the warp-input startup problem
|
|
if [ -z "$SESSION_ID" ]; then
|
|
echo "Error: SESSION_ID environment variable is not set."
|
|
exit 1
|
|
fi
|
|
|
|
#Open udp port to listed for QUIC events on
|
|
export PORT=${PORT:-"8080"}
|
|
|
|
sudo -E /usr/bin/supervisord -c /etc/supervisord.conf
|