-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |