mirror of
https://github.com/samvallad33/vestige.git
synced 2026-07-24 23:41:01 +02:00
The July 14 launch surface, previously uncommitted: - /dashboard/launch raw-WebGPU particle "memory brain" hero (RawVestigeEngine, NeuralWordmark, dendrite sign) + DOM waitlist overlay with share/referral. - Supabase waitlist client + migrations + welcome edge function; legacy waitlist archived under supabase/legacy. - vercel.json deploy config, root-redirect env wiring, base-path config, graph-only route, Playwright launch verifiers. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
16 lines
771 B
TOML
16 lines
771 B
TOML
# Supabase project config for the Vestige LAUNCH waitlist (/dashboard/launch).
|
|
#
|
|
# Link to a real project with: supabase link --project-ref <your-ref>
|
|
# Apply the schema: supabase db push
|
|
# Deploy the welcome email fn: supabase functions deploy waitlist-welcome --no-verify-jwt
|
|
#
|
|
# The launch page inserts directly with the anon key (insert-only RLS + RPCs);
|
|
# see supabase/migrations/0002_launch_waitlist.sql and docs/launch/waitlist-setup.md.
|
|
# The legacy service-role waitlist-join function is archived in supabase/legacy/.
|
|
|
|
project_id = "vestige-waitlist"
|
|
|
|
[functions.waitlist-welcome]
|
|
# Invoked by a Database Webhook on INSERT into public.waitlist (no end-user JWT);
|
|
# guard with the optional WAITLIST_WEBHOOK_SECRET header instead.
|
|
verify_jwt = false
|