Compare commits

...
Sign in to create a new pull request.

1 commit

View file

@ -32,10 +32,10 @@ sleep 2
if [ "$ENVIRONMENT" = "dev" ] || [ "$ENVIRONMENT" = "local" ]; then
if [ "$DEBUG" = "true" ]; then
echo "Waiting for the debugger to attach..."
exec python -m debugpy --wait-for-client --listen 0.0.0.0:5678 -m cognee
exec python -m debugpy --wait-for-client --listen 127.0.0.1:5678 -m cognee
else
exec cognee
fi
else
exec cognee
fi
fi