feat: update docs, fix repository, full working github callback, fix healthcheck in docker file, update makefile

This commit is contained in:
d3m0k1d
2026-02-12 23:57:58 +03:00
parent bce5ad2f9a
commit d9cf0ade7f
9 changed files with 182 additions and 34 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: test build clean lint dev
.PHONY: test build clean lint dev run-docker docs-upd
test:
@@ -19,3 +19,12 @@ lint:
dev:
swag init -g ./cmd/main.go --parseDependency --parseInternal
go run ./cmd/main.go
docs-upd:
swag init -g ./cmd/main.go --parseDependency --parseInternal
run-docker:
docker build -t backend .
docker run --rm -p 8080:8080 --env-file .env backend:latest