magicwallet/Makefile

16 lines
411 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 03:52:59 +02:00
go run .