all repos — homestead @ 4fe285fc78fdadde99c439e3691670b009087655

Code for my website

move commands

Alan Pearce
commit

4fe285fc78fdadde99c439e3691670b009087655

parent

b16c1c7338333ad5f9c968f7fa579015d350672a

1 file changed, 2 insertions(+), 1 deletion(-)

changed files
M cmd/barkeep/justfiledomain/content/publisher/barkeep/justfile
@@ -1,8 +1,9 @@
listen_address := env_var_or_default("SERVER_LISTEN_ADDRESS", "::1") port := env_var_or_default("SERVER_PORT", "8081") +root := `git rev-parse --show-toplevel` run: - systemfd -s http::{{ listen_address }}:{{ port }} -- wgo run --root ../.. . --dev + systemfd -s http::{{ listen_address }}:{{ port }} -- wgo run --root {{ root }} . --dev build: go build .