-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
73 lines (51 loc) · 2.05 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
DB_URL=postgresql://root:secret@localhost:5432/bank?sslmode=disable
# Digite -> Make [Nome do comando]
network:
docker network create bank-network
postgres:
docker run --name postgres16.1 --network bank-network -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=secret -d postgres:16.1-alpine
docker_start:
docker start postgres16.1
docker_stop:
docker stop postgres16.1
createdb:
docker exec -it postgres16.1 createdb --username=root --owner=root bank
dropdb:
docker exec -it postgres16.1 dropdb bank
migrateup:
migrate -path db/migration -database "$(DB_URL)" -verbose up
migrateup1:
migrate -path db/migration -database "$(DB_URL)" -verbose up 1
migratedown:
migrate -path db/migration -database "$(DB_URL)" -verbose down
migratedown1:
migrate -path db/migration -database "$(DB_URL)" -verbose down 1
new_migration:
migrate create -ext sql -dir db/migration -seq $(name)
db_docs:
dbdocs build doc/db.dbml
db_schema:
dbml2sql --postgres -o doc/schema.sql doc/db.dbml
sqlc:
sqlc generate
test:
go test -v -cover -short ./...
server:
go run main.go
mock:
mockgen -package mockdb -destination db/mock/store.go github.com/IgorCastilhos/BankApplication/db/sqlc Store
mockgen -package mockwk -destination worker/mock/distributor.go github.com/IgorCastilhos/BankApplication/worker TaskDistributor
proto:
rm -f pb/*.go
rm -f doc/swagger/*.swagger.json
protoc --proto_path=proto --go_out=pb --go_opt=paths=source_relative \
--go-grpc_out=pb --go-grpc_opt=paths=source_relative \
--grpc-gateway_out=pb --grpc-gateway_opt=paths=source_relative \
--openapiv2_out=doc/swagger --openapiv2_opt=allow_merge=true,merge_file_name=bank_application \
proto/*.proto
statik -f -src=./doc/swagger -dest=./doc
evans:
evans --host localhost --port 9090 -r repl
redis:
docker run --name redis -p 6379:6379 -d redis:7.2.4-alpine
.PHONY: postgres createdb dropdb migrateup migratedown migrateup1 migratedown1 test docker_start docker_stop server mock db_docs db_schema proto evans new_migration redis