Globiqo · Admin

Setup required

Connect Supabase to continue

The admin console reads its data live from Supabase, with no mock-data fallback. Configure the env below before signing in.

Required environment
Add to .env.local and restart the dev server.
NEXT_PUBLIC_SUPABASE_URLmissing
NEXT_PUBLIC_SUPABASE_ANON_KEYmissing
Then deploy the admin schema
Apply the migration that creates the admin tables and the queries the dashboard reads from.
# from the repo root
supabase db push                                       # if using the Supabase CLI
# OR paste the contents of:
#   supabase/migrations/0002_admin.sql
# into the Supabase SQL editor and run it.