pronounss/Makefile

16 lines
287 B
Makefile
Raw Normal View History

2022-05-14 16:46:03 +02:00
.PHONY: migrate
2022-05-02 17:19:37 +02:00
migrate:
2022-05-12 16:41:32 +02:00
go run -v ./scripts/migrate
2022-05-02 17:19:37 +02:00
2022-05-14 16:46:03 +02:00
.PHONY: backend
backend:
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 16:46:03 +02:00
.PHONY: frontend
frontend:
yarn build
.PHONY: dev
dev:
yarn dev