Conversation
Adds a complete Rust web application built with Axum, SQLite, HTMX, and Apalis background tasks. Includes Google OAuth, SSE real-time events, struct-patch models, and a trait-based task registry. Key patterns: - runtime::Service trait with graceful shutdown - Handler-per-file organization (views/ + actions/) - Task trait for self-registering background jobs - EventBus with scoped SSE streaming - Full/ListItem/Patch model types via struct-patch Also adds Kamal deploy config, Rust CI jobs, and updated docs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Remove stale scripts (bin/dev, bin/minio, bin/check, bin/test, bin/watch, bin/db, dev_/), old CI workflows (.github/workflows/), and unused skills (e2e, spawn). Move db-rust skill into rust/ as db. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Bump Rust Docker image to 1.89, fix Dockerfile COPY paths for root context, auto-generate SERVICE_SECRET via rand when not provided, and remove SERVICE_SECRET from Kamal secrets. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Match Kamal's context: "." so COPY rust/... paths resolve correctly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
runtime::Servicetrait with graceful shutdown,Tasktrait for self-registering background jobs,struct-patchmodels with Full/ListItem/Patch types, handler-per-file organization underviews/andactions/config/deploy/rust.yml), Rust CI jobs (fmt, clippy, test, build, Docker), and project documentationTest plan
cargo buildcompiles cleanlycargo testpassescargo clippy -- -D warningsno warningscargo fmt -- --checkformattedmake devstarts the server, widget CRUD works🤖 Generated with Claude Code