Share your thoughts on China's humanoid robotics revolution. Ask questions, exchange ideas with others, or request specific information.
Join the discussion with your existing account. No registration required.
Free, secure, no password to remember. We only access your email and name.
To enable discussions, create a free Supabase account and connect your Google OAuth app.
View Setup Guide →For business cooperation, product inquiries, supply chain partnerships, and investment opportunities.
Response time: 1-2 business days
Visit supabase.com to create a free project. Copy the project URL and Anon Key.
Run the following SQL in the Supabase SQL Editor:
create table comments (
id uuid default gen_random_uuid() primary key,
user_id uuid references auth.users,
content text not null,
topic text default 'general',
created_at timestamp default now()
);
-- Enable RLS
alter table comments enable row level security;
-- Allow anonymous reads
create policy "Allow read access"
on comments for select to anon using (true);
-- Allow insert by authenticated users only
create policy "Allow insert by auth users"
on comments for insert to authenticated with check (auth.uid() = user_id);
In the Supabase dashboard → Authentication → Providers → Google, enable it. Add your domain to the authorized redirect URLs.
Replace the following in the JavaScript below:
const SUPABASE_URL = 'YOUR_SUPABASE_URL'
const SUPABASE_ANON_KEY = 'YOUR_SUPABASE_ANON_KEY'