26 lines
886 B
Makefile
26 lines
886 B
Makefile
.PHONY: help
|
|
help: ## Shows this help command
|
|
@egrep -h '\s##\s' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
|
|
|
|
build: ## builds the application with the current go runtime
|
|
~/go/bin/swag f
|
|
~/go/bin/swag init -g cmd/server.go
|
|
go build cmd/server.go
|
|
ls -lh server
|
|
|
|
docker-build: ## Generates the docker image
|
|
docker build -t "newsbot.collector.api" .
|
|
docker image ls | grep newsbot.collector.api
|
|
|
|
migrate-dev: ## Apply sql migrations to dev db
|
|
goose -dir "./internal/database/migrations" sqlite3 ./cmd/newsbot.db up
|
|
|
|
migrate-dev-down: ## revert sql migrations to dev db
|
|
goose -dir "./internal/database/migrations" sqlite3 ./cmd/newsbot.db down
|
|
|
|
swag: ## Generates the swagger documentation with the swag tool
|
|
~/go/bin/swag f
|
|
~/go/bin/swag init -g cmd/server.go
|
|
|
|
gensql: ## Generates SQL code with sqlc
|
|
sqlc generate
|