7 lines
337 B
Makefile
7 lines
337 B
Makefile
|
run:
|
||
|
go run ./cmd/sso/main.go -config ./config/local.yaml
|
||
|
gen_proto:
|
||
|
protoc -I proto proto/sso/*.proto --go_out=./gen --go_opt=paths=source_relative --go-grpc_out=./gen --go-grpc_opt=paths=source_relative
|
||
|
migrate:
|
||
|
go run ./cmd/migrator/main.go -migrations-path ./migrations -storage-path ./storage/sso.db -migrations-table migrations
|