magicwallet/Makefile

20 lines
437 B
Makefile
Raw Normal View History

.PHONY: build run
SOURCE := $(shell find fonts lib pages server -type f) main.go
# build binary for deployment
build: hermes
hermes: $(SOURCE)
tailwindcss -i public/css/base.css -o public/css/tailwind.css
templ generate -path pages
go build -o hermes .
# run code for development (no watch mode yet)
run:
tailwindcss -i public/css/base.css -o public/css/tailwind.css
templ generate -path pages
2024-10-25 23:59:45 +00:00
go run .
dev:
bash hotreload.sh