Thanks for looking. This is a real project people self-host, so the bar is production code, not demo code.
git clone https://github.com/smallchungus/DistTaskQueue
cd DistTaskQueue
make test-unit # fast, no Docker
make test-integration # real Postgres + Redis via testcontainers-go (needs Docker)
make lint # golangci-lintTo run the whole stack locally, see docs/SELF-HOSTING.md.
- Tests before code. Integration tests use real Postgres and Redis via testcontainers — no mocking the queue or the database. Outbound HTTP (Gmail, Drive, Gotenberg) is faked with
httptest. - Conventional Commits with an optional component scope:
feat(queue): ...,fix(drive): ...,docs: .... Subject in imperative mood, under 72 characters. - One concern per pull request. Two unrelated changes are two PRs.
- No new queue/web/ORM dependencies. The point of the project is owning the internals — raw
go-redis, hand-written SQL overpgx,net/http. See CLAUDE.md for the full house rules.
Regular bugs: open an issue with the smallest reproduction you can manage. Security issues: see SECURITY.md — report privately, not in a public issue.