Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add supabase environment variables examples and readme #17

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .dev.vars.example
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
WEBHOOK_PROXY_URL=https://smee.io/new
WEBHOOK_SECRET=xxxxxx

SUPABASE_URL=
SUPABASE_KEY=
SUPABASE_URL="https://xxxxxxxxxxxxxx.supabase.co"
SUPABASE_KEY=xxxxxx

LOG_RETRY_LIMIT=
LOG_LEVEL=
LOG_RETRY_LIMIT=1
LOG_LEVEL=DEBUG
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@ The bot kernel is designed to:
- WEBHOOK_PROXY_URL (only for development)
You need to get a webhook URL at <https://smee.io/> and set it in the Github App settings

- SUPABASE_URL and SUPABASE_KEY
Supabase client connection details.

- LOG_LEVEL
Log level, possible values are FATAL, ERROR, INFO, VERBOSE, DEBUG.

- LOG_RETRY_LIMIT
Maximum number of retries to insert logs to Supabase, set to 0 means no retries will be attempted.


### Quick Start

```bash
Expand Down