Skip to content

Commit

Permalink
init tuto for supabase
Browse files Browse the repository at this point in the history
  • Loading branch information
donsez committed Feb 26, 2023
1 parent 905250e commit 45a67cc
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions supabase/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Supabase

[Supabase](https://supabase.com/) is an open source Firebase alternative.

## Getting started with Docker

https://supabase.com/docs/guides/self-hosting/docker

```bash
cd github/
mkdir supabase
cd supabase/

# Get the code
git clone --depth 1 https://github.com/supabase/supabase.git

# Go to the docker folder
cd supabase/docker

# Copy the fake env vars
cp .env.example .env

# Start
docker compose up -d

# List containers
docker compose ps

# Show logs
docker compose logs -f
```

Now visit http://localhost:3000 to start using Supabase Studio.


## Supabase CDC Webhooks

https://dzone.com/articles/supabase-cdc-webhooks-to-memphis-rest-gateway

0 comments on commit 45a67cc

Please sign in to comment.