Add examples/supabase-chat — full persistence example with Supabase (#299)#306
Open
eshwarreddym wants to merge 2 commits intothesysdev:mainfrom
Open
Add examples/supabase-chat — full persistence example with Supabase (#299)#306eshwarreddym wants to merge 2 commits intothesysdev:mainfrom
eshwarreddym wants to merge 2 commits intothesysdev:mainfrom
Conversation
…hesysdev#299) Closes thesysdev#299 Adds a standalone Next.js example that wires OpenUI's threadApiUrl contract to a real Supabase backend, giving developers a production-ready reference to build from. Includes: - Supabase migration: threads + messages tables, RLS policies (per-user ownership), updated_at trigger, and Realtime publication - Anonymous auth via signInAnonymously() — stable per-device UUID with zero sign-up friction; upgradeable to email auth - All five default thread routes: GET /get, GET /get/:id, POST /create, PATCH /update/:id, DELETE /delete/:id — each auth-checked server-side - /api/chat route that streams via openAIAdapter and persists the full conversation to Postgres after each assistant reply - Supabase Realtime subscription (postgres_changes on threads) that refreshes the sidebar across tabs - README with step-by-step setup: Supabase project, anonymous auth, migration options (SQL Editor or CLI), env vars table, architecture walkthrough, and "going further" pointers Follows the same structure and tooling as examples/openui-chat.
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.
Closes #299
Adds a standalone Next.js example that wires OpenUI's threadApiUrl contract to a real Supabase backend, giving developers a production-ready reference to build from.
Includes:
Follows the same structure and tooling as examples/openui-chat.