You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Elijah Voigt 2dd808cdd3 chore: migrate task tracking from nbd to beans
Replace all .nbd/ ticket stores with .beans/ directories across the
mono-repo (root, edu, nbd, quotesdb). Field mappings: status todo→todo,
in_progress→in-progress, done→completed, closed→scrapped,
archived→completed, backlog→draft; priority numeric→label; type
project→epic. All dependency relationships preserved via --blocked-by.

Add scripts/migrate-nbd-to-beans.sh for reproducible future migrations.

Update CLAUDE.md task-tracking sections (root, edu, nbd, quotesdb) to
reference beans commands instead of nbd commands.

Counts: root 2, edu 48, nbd 38, quotesdb 121 beans created; 0 failures.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
3 months ago
..
.beans chore: migrate task tracking from nbd to beans 3 months ago
.claude quotesdb scaffolding 3 months ago
api feat(quotesdb): add admin verify endpoint, remove reset-auth-code UI 3 months ago
docs feat(quotesdb): add Cloudflare WAF rate limiting rules via OpenTofu 3 months ago
infra feat(quotesdb): support ADMIN_AUTH_CODE Cloudflare secret for admin auth 3 months ago
migrations fix(quotesdb): fix D1 exec() newline truncation in migrations, add justfile and migrate command 3 months ago
src feat(quotesdb): add admin verify endpoint, remove reset-auth-code UI 3 months ago
tests feat(quotesdb): implement API DB layer and all HTTP handlers 3 months ago
.beans.yml chore: migrate task tracking from nbd to beans 3 months ago
.env.example feat(quotesdb): implement API DB layer and all HTTP handlers 3 months ago
.gitignore refactor(quotesdb): move db/handlers to lib modules, upgrade worker to 0.7, update infra 3 months ago
CLAUDE.md chore: migrate task tracking from nbd to beans 3 months ago
Cargo.lock refactor(quotesdb): move db/handlers to lib modules, upgrade worker to 0.7, update infra 3 months ago
Cargo.toml refactor(quotesdb): move db/handlers to lib modules, upgrade worker to 0.7, update infra 3 months ago
README.md refactor(quotesdb): collapse to single crate with api and ui binaries 3 months ago
TODO.md flake and quotesdb misc change 3 months ago
Trunk.toml fix frontend proxy issue 3 months ago
_redirects chore(quotesdb): add _redirects SPA fallback for Cloudflare Pages routing 3 months ago
build.rs feat(quotesdb): add build.rs to convert api/openapi.yaml to JSON at compile time 3 months ago
index.html refactor(quotesdb): move db/handlers to lib modules, upgrade worker to 0.7, update infra 3 months ago
justfile feat(quotesdb): add admin verify endpoint, remove reset-auth-code UI 3 months ago
wrangler.toml fix(quotesdb): fix D1 exec() newline truncation in migrations, add justfile and migrate command 3 months ago

README.md

quotesdb

A quotes web application — browse, submit, and manage memorable quotes.

What

quotesdb is a full-stack web application with:

  • A JSON REST API (api binary) backed by Cloudflare Workers + D1 (SQLite)
  • A Yew/Wasm frontend (ui binary) hosted on Cloudflare Pages
  • NanoID-identified quotes protected by a 4-word passphrase auth code

How

Single Cargo crate with two binaries sharing common types via src/lib.rs:

  • api: Axum on Tokio, targeting Cloudflare Workers via workers-rs, SQLx + D1
  • ui: Yew compiled to wasm32-unknown-unknown via Trunk

Run

# Start API server (local dev)
cargo run

# Start UI dev server (requires wasm32 toolchain + trunk)
trunk serve

Test

cargo fmt && cargo check && cargo clippy && cargo test

License

Licensed under either of Apache License, Version 2.0 or MIT License at your option.

Disclaimer

This software was written with Claude Code (claude-sonnet-4-6).