saasitone/Makefile

15 lines
244 B
Makefile
Raw Normal View History

2021-12-10 17:44:23 -08:00
.PHONY: pg
pg:
psql postgresql://admin:admin@localhost:5432/app
2021-12-11 10:46:01 -08:00
.PHONY: ent-gen
ent-gen:
go generate ./ent
.PHONY: ent-new
ent-new:
go run entgo.io/ent/cmd/ent init $(name)
.PHONY: ent-install
ent-install:
go get -d entgo.io/ent/cmd/ent