Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,13 @@ unit-test: go-dep
@echo Unit Tests
@${GO} test .
@${GO} test ./pgmanager/...
@${GO} test ./pgqueue/...
@${GO} test ./pkg/...

.PHONY: coverage-test
coverage-test: go-dep mkdir
@echo Test Coverage
@${GO} test -v -coverprofile ${BUILD_DIR}/coverprofile.out ./pkg/...
@${GO} test -v -coverprofile ${BUILD_DIR}/coverprofile.out ./pkg/... ./pgqueue/... ./pgmanager/...
@${GO} tool cover -func ${BUILD_DIR}/coverprofile.out > ${BUILD_DIR}/coverage.txt

###############################################################################
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Postgresql Support for Go, built on top of [pgx](https://github.com/jackc/pgx).
* Bulk insert operations and transactions;
* Support for queries stored in external files with named parameters to improve separation of concerns;
* Support for tracing and observability;
* [PostgreSQL Manager](pkg/manager/README.md) for server administration with REST API, an optional frontend and prometheus metrics;
* [Task Queue](pkg/queue/README.md) for task queue (and interval task) processing using PostgreSQL as a backend;
* [PostgreSQL Manager](pgmanager/README.md) for server administration with REST API, an optional frontend and prometheus metrics;
* [Task Queue](pgqueue/README.md) for task queue (and interval task) processing using PostgreSQL as a backend;
* [Testing utilities](pkg/test/README.md) for integration testing with testcontainers.

Documentation: <https://pkg.go.dev/github.com/mutablelogic/go-pg>
Expand Down Expand Up @@ -549,4 +549,8 @@ See [pkg/test/README.md](pkg/test/README.md) for documentation.

## PostgreSQL Manager

See [pkg/manager/README.md](pkg/manager/README.md) for documentation.
See [pgmanager/README.md](pgmanager/README.md) for documentation.

## Task Queue

See [pgqueue/README.md](pgqueue/README.md) for documentation.
174 changes: 0 additions & 174 deletions cmd/_pgqueue/main.go

This file was deleted.

175 changes: 0 additions & 175 deletions cmd/_pgqueue/server.go

This file was deleted.

Loading
Loading