docs(setup): add psql and redis-cli to prerequisites #61
Reference in New Issue
Block a user
Delete Branch "docs/setup/db-clients-in-prereqs"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Verifying the local-dev stack from the host (
docker compose up -d+psql ... -c "\du"/redis-cli PING) requires the postgres and redis client binaries on the developer's machine. They were missing from the prereqs table, soapt install postgresql-client/apt install redis-toolswas an implicit step nobody knew to run.Add both to §2's table, with one-line rationale for each. The Docker row is also tightened to point at the actual local-dev stack location (
infra/local/) instead of the placeholder "Postgres + Redis containers" wording from before that recipe existed.docker compose execremains a viable zero-install alternative for developers who prefer not to touch their host. Mentioned only informally — the host-install path is the documented one.Test plan
psql ... -c "\du"against it.