Skip to content

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

Notifications You must be signed in to change notification settings

korrrba/ubiquibot-logging

 
 

Repository files navigation

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

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 84.2%
  • CSS 10.2%
  • HTML 5.3%
  • Shell 0.3%