Skip to content

Commit 24904fc

Browse files
centerionwareGaisberg
authored andcommitted
feat: Add debugpy as optional to entrypoint script if DEBUG env variable is set to anything.
1 parent 667e884 commit 24904fc

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

entrypoint.sh

+11-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,16 @@ echo "Container Initialization complete."
7676

7777
echo "Starting Riven (Backend)..."
7878
if [ "$PUID" = "0" ]; then
79-
cd /riven/src && poetry run python3 main.py
79+
if [ "${DEBUG}" != "" ]; then # check if DEBUG is set to a truthy value
80+
cd /riven/src && poetry add debugpy && poetry run python3 -m debugpy --listen 0.0.0.0:5678 main.py
81+
else
82+
cd /riven/src && poetry run python3 main.py
83+
fi
8084
else
81-
su -m "$USERNAME" -c "cd /riven/src && poetry run python3 main.py"
85+
if [ "${DEBUG}" != "" ]; then # check if DEBUG is set to a truthy value
86+
poetry add debugpy
87+
exec su -m $USERNAME -c "cd /riven/src && poetry run python3 -m debugpy --listen 0.0.0.0:5678 main.py"
88+
else
89+
su -m "$USERNAME" -c "cd /riven/src && poetry run python3 main.py"
90+
fi
8291
fi

0 commit comments

Comments
 (0)