/ubiquibot-logging

A realtime logging app for the production instance of the UbiquiBot, for community debugging.

Primary LanguageTypeScript

Ubiquibot-logging App

Frontend 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