1
0
Fork 0

Added a run makefile target

This commit is contained in:
Julien Dessaux 2022-11-02 23:54:57 +01:00
parent 28424a589d
commit 51104b4b5d
Signed by: adyxax
GPG key ID: F92E51B86E07177E

View file

@ -27,8 +27,12 @@ init: ## make init # initialize project dependencies
push: ## make push # push the built image to quay.io
buildah push adyxax/grenade-brothers quay.io/adyxax/grenade-brothers:$(REVISION)
.PHONY: run
run: ## make run # run a nodejs web server
node_modules/.bin/w4 run --port 80 --no-open --no-qr zig-out/lib/cart.wasm
.PHONY: serve
serve: ## make serve # run a nodejs web server
serve: ## make serve # run a nodejs development web server that watches the code file and recompiles upon changes
node_modules/.bin/w4 watch --no-open --no-qr
.DEFAULT_GOAL := help