We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0baede2 commit 0dc639fCopy full SHA for 0dc639f
1 file changed
justfile
@@ -115,3 +115,9 @@ docker-image-run:
115
# send request to the app's HTTP endpoint (requires running container)
116
send-request-to-app:
117
curl http://localhost:8123/status
118
+
119
+# watch sources for changes and trigger a rebuild (requires https://github.com/watchexec/watchexec)
120
+watch:
121
+ # Watch all go files in the current directory and all subdirectories for
122
+ # changes. If something changed, re-run the build.
123
+ @watchexec -e go -- just build
0 commit comments