Skip to content
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (23 loc) · 950 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 950 Bytes

Ubiquibot-logging App

Web app that displays ubiquibot realtime logs for debug purposes.

How to setup:

  1. Set your project's SUPABASE_URL and SUPABASE_KEY (public anon key) here
  2. Enable realtime for the table
Screenshot 2023-10-17 at 16 41 30 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)
  1. Now logs should be displayed in realtime

How to start a dev server

yarn start

How to build for production

yarn build:prod