https://github.com/mfa/ax-supabase-do
write AX webhook into supabase (using digitalocean functions)
https://github.com/mfa/ax-supabase-do
Last synced: about 1 year ago
JSON representation
write AX webhook into supabase (using digitalocean functions)
- Host: GitHub
- URL: https://github.com/mfa/ax-supabase-do
- Owner: mfa
- Created: 2023-02-11T20:03:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-11T20:16:21.000Z (over 3 years ago)
- Last Synced: 2025-02-07T14:22:45.068Z (over 1 year ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## ax-supabase (digitalocean functions)
store the webhook from AX in supabase
this demo is deployed on DigitalOcean Functions
blog post to this repository:
### setup
Create a table in supabase named "generated" and add the following fields (keep `id` and `created_at`):
```
document_id: uuid
uid: text
text: text
text_modified: timestamp without time zone
collection_id: int8
collection_name: text
language: varchar
html: text
html_axite: text
```
Copy ``project.yml.template`` to ``project.yml`` and set the environment variables:
```
SUPABASE_URL=my-url-to-my-awesome-supabase-instance
SUPABASE_KEY=my-supa-dupa-secret-supabase-api-key
```
and the webhook secret from AX:
```
AX_WEBHOOK_SECRET=copy-from-collection-settings-and-set-your-url-there-too
```
The function needs 512MB memory instead of the 256MB default! - This can be set in the DigitalOcean Functions UI for this function.
### deploy
```
doctl serverless deploy ax-do-supabase --remote-build
```
### development
Deploy and look at the logs.