We are trying to set up our IDE’s debugger with doppler by starting our server with this command doppler -c <config-name> run npx babel-node --inspect backend/index.js
^ this works on the command line, but the debugger session never starts the server
If we run the debugger without Doppler, with the command npx babel-node --inspect backend/index.js, the server starts but we are missing env vars
we’re running Doppler + the server on the command line
we’re having the debugger attach to that session on the command line
Our hypothesis right now is that the IDE’s debugger is waiting for some signal from Doppler before executing the server start code. We’re not sure if there’s anything that can be done to fix this, but hopefully this is helpful