File tree 1 file changed +11
-2
lines changed
1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,16 @@ echo "Container Initialization complete."
76
76
77
77
echo " Starting Riven (Backend)..."
78
78
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
80
84
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
82
91
fi
You can’t perform that action at this time.
0 commit comments