Navigation is now rendered by blog as an HTML fragment. This app
fetches it with its own app_name and path for correct highlighting.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Webfinger, actor profile, inbox, outbox, and followers are now served
by the shared AP blueprint registered in create_base_app(). Federation
keeps identity + social blueprints for UI routes.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Auth server responsibilities moved to account app.
Federation uses the shared OAuth client blueprint via factory.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Replace standalone base.html with the shared _types/root layout.
Social pages get a second nav row via _types/social/index.html.
Root / becomes a blank page with shared chrome. Auth pages use
the shared layout without the social nav bar.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Social blueprint with timeline, compose, search, follow/unfollow,
like/boost interactions, and notifications. Inbox handler extended
for Create/Update/Delete/Accept/Like/Announce with notification
creation. HTMX-powered infinite scroll and interaction buttons.
Nav updated with Timeline, Public, Search, and Notifications links.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Phase 0+1 of AP integration. New 5th Quart microservice:
Blueprints:
- wellknown: WebFinger, NodeInfo 2.0, host-meta
- actors: AP actor profiles (JSON-LD + HTML), outbox, inbox, followers
- identity: username selection flow (creates ActorProfile + RSA keypair)
- auth: magic link login/logout (ported from blog, self-contained)
Services:
- Registers SqlFederationService (real impl) for federation domain
- Registers real impls for blog, calendar, market, cart
- All cross-domain via shared service contracts
Templates:
- Actor profiles, username selection, platform home
- Auth login/check-email (ported from blog)
Infrastructure:
- Dockerfile + entrypoint.sh (matches other apps)
- CI/CD via Gitea Actions
- shared/ as git submodule
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>