Hacker News new | ask | show | jobs
by electroly 311 days ago
> then forgetting to stop it and hitting errors from starting it again

This one is easy to fix. Give it a script that both kills the old process and starts the new one. Then it can't forget. This is what I do; categorically solved the problem.

1 comments

> Give it a script

Ideally the build tool does that for you, e.g. `./gradlew run -t`.