pronounsfu/Makefile

24 lines
422 B
Makefile
Raw Normal View History

.PHONY: all
2022-06-17 06:19:00 -07:00
all: frontend css backend
mv api pronouns
2022-05-14 07:46:03 -07:00
.PHONY: migrate
2022-05-02 08:19:37 -07:00
migrate:
2022-05-12 07:41:32 -07:00
go run -v ./scripts/migrate
2022-05-02 08:19:37 -07:00
2022-05-14 07:46:03 -07:00
.PHONY: backend
2022-06-17 06:19:00 -07:00
backend: css
CGO_ENABLED=0 go build -v -o api -ldflags="-buildid= -X codeberg.org/u1f320/pronouns.cc/backend/server.Revision=`git rev-parse --short HEAD`" ./backend
2022-05-14 07:46:03 -07:00
.PHONY: frontend
frontend:
yarn build
2022-06-17 06:19:00 -07:00
.PHONY: css
css:
yarn tailwindcss -m -o frontend/style.css
2022-05-14 07:46:03 -07:00
.PHONY: dev
dev:
yarn dev