3 Commits

Author SHA1 Message Date
98f1f554c1 Fix add-user command 2026-02-08 08:04:59 -05:00
554f0e0044 . 2026-02-08 08:04:49 -05:00
530e3dccef Add todo item 2026-02-08 08:04:38 -05:00
3 changed files with 6 additions and 2 deletions

View File

@@ -56,6 +56,10 @@ CREATE TABLE app.customer_metadata (...);
leaves around `master-bin`, `logger-bin`, and `diachron:nnnn` processes.
Huge problem.
- [ ] Fix format used by master (and logger?)'s output: it should be logfmt
- A lot of other stuff should probably be logfmt too but maybe we can get to
that later
## medium importance
- [ ] Add a log viewer

View File

@@ -5,5 +5,5 @@ set -eu
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
ROOT="$DIR/../.."
cd "$ROOT/backend"
cd "$ROOT/backend/diachron"
"$DIR"/../cmd.d/tsx mgmt/add-user.ts "$@"

View File

@@ -1,4 +1,4 @@
We use `Call` and `Result` for our own types that wrap `Request` and
diachron uses `Call` and `Result` for its own types that wrap `Request` and
`Response`.
This hopefully will make things less confusing and avoid problems with shadowing.