Frontend app that displays ubiquibot realtime logs for debug purposes.
- Set your project's
SUPABASE_URLandSUPABASE_KEY(public anon key) here - Enable realtime for the table
3. Add a new [RLS policy](https://supabase.com/docs/guides/auth/row-level-security) with read access to the table.
-- example
CREATE POLICY "Enable read access for all users" ON "public"."logs"
AS PERMISSIVE FOR SELECT
TO public
USING (true)
- Now logs should be displayed in realtime
yarn start
yarn build:prod