James Tombleson
713205bb03
* basic routes are working with db context * swagger is working along with swag gen * cron was updated with a class and better db context, untested though * sourcelist command added * lost the pg package but added it back * Updated the api startup for cron and api * updated source routes and started to add article routes * Updated cron add func calls * updated swagger * keeping articles basic for now as I dont need to pull them in yet * swagger update * added getarticlesbysourceid call * adding the subscriptions table to track who to send notifications and where * removed legacy columns from discordwebhooks that are no longer needed. * added discord webhook routes * updated routes * Minor change to schema * Updated routes to support subscriptions * ignore .vscode
26 lines
915 B
Makefile
26 lines
915 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
|
|
sqlc generate
|
|
~/go/bin/swag f
|
|
~/go/bin/swag i
|
|
go build .
|
|
|
|
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 "./database/migrations" postgres "user=postgres password=postgres dbname=postgres sslmode=disable" up
|
|
|
|
migrate-dev-down: ## revert sql migrations to dev db
|
|
goose -dir "./database/migrations" postgres "user=postgres password=postgres dbname=postgres sslmode=disable" down
|
|
|
|
swag: ## Generates the swagger documentation with the swag tool
|
|
~/go/bin/swag f
|
|
~/go/bin/swag i
|
|
|
|
gensql: ## Generates SQL code with sqlc
|
|
sqlc generate
|