Skip to content

Instantly share code, notes, and snippets.

@v1bh0r
Created September 27, 2021 04:33
Show Gist options
  • Save v1bh0r/8ab82305003b34880b1ae68d900123a8 to your computer and use it in GitHub Desktop.
Save v1bh0r/8ab82305003b34880b1ae68d900123a8 to your computer and use it in GitHub Desktop.
Monitor changes to the code and auto-build
#!/bin/bash
dos2unix mvnw
./mvnw spring-boot:run -Dspring-boot.run.jvmArguments="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005" &
while true; do
inotifywait -e modify,create,delete,move -r ./src/ && ./mvnw compile
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment