saasitone/Makefile
2021-12-17 19:58:44 -05:00

33 lines
448 B
Makefile

.PHONY: db
db:
psql postgresql://admin:admin@localhost:5432/app
.PHONY: db-test
db-test:
psql postgresql://admin:admin@localhost:5432/app_test
.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
.PHONY: up
up:
docker-compose up -d
sleep 3
.PHONY: run
run:
clear
go run main.go
.PHONY: test
run:
go test ./...