8 lines
231 B
Makefile
8 lines
231 B
Makefile
run:
|
|
CONFIG_PATH=./internal/config/local.yml go run ./cmd/app/main.go
|
|
|
|
build:
|
|
go build -o crypro_alert_bot ./cmd/app/main.go
|
|
|
|
migrate_create:
|
|
migrate create -ext sql -dir ./internal/repository/postgresql/migrations -seq ${NAME}
|