all repos — homestead @ 52549c0ea610306039e1f3f91c89e05ba4f41e72

Code for my website

cmd/barkeep/justfile (view raw)

1
2
3
4
5
6
7
8
listen_address := env_var_or_default("SERVER_LISTEN_ADDRESS", "::1")
port := env_var_or_default("SERVER_PORT", "8081")

run:
	systemfd -s http::{{ listen_address }}:{{ port }} -- wgo run --root ../.. . --dev

build:
	go build .