Ricko Yu
Ricko Yu
Oops, I misunderstood. Currently, It does not support running multiple binaries at the same time.
I'll consider it, one possible solution is combine two configs in one command...
Sorry, I'm not familiar with dlv. Maybe others could help you. 😄
Sorry I do not familiar with Windows...
I think you could use Makefile to finish this, just `make build` in `cmd`. ```Makefile build: yarn build go build ``` But now it does not support hooks around build...
Please use `full_bin` instead of `cmd`, like: ``` full_bin = "MONGODB_HOST=127.0.0.1:27017 MONGODB_USER=test MONGODB_PASSWORD=test REDIS_ADDR=127.0.0.1 GIN_MODE=debug go run *.go" ```
Thanks for your advice, it does make sense, I'll update the README.
What's your project structure?
I think it's better you handle the syscall.SIGKILL signal in your programs. Please refer to [this article](https://stackoverflow.com/questions/11268943/is-it-possible-to-capture-a-ctrlc-signal-and-run-a-cleanup-function-in-a-defe).