Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/silentworks/appsmith-supabase-auth
https://github.com/silentworks/appsmith-supabase-auth
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/silentworks/appsmith-supabase-auth
- Owner: silentworks
- Created: 2022-07-22T23:46:55.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-29T13:41:19.000Z (over 2 years ago)
- Last Synced: 2024-05-01T23:48:06.878Z (6 months ago)
- Language: JavaScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Appsmith with Supabase Auth
These are migration files for the supabase database setup used in https://www.youtube.com/watch?v=xmb4JrTYhZg
## Installation
Using [npm](https://npmjs.org):
```sh
npm install
```## Getting Started
Copy the `.env.example` and name it `.env`
Edit the file and enter all the required variable values
```
CONNECTION_STRING=
```The "CONNECTION_STRING" can be found inside the Supabase Dashboard by going to [**Settings > Database**](https://app.supabase.com/project/_/settings/database) then scrolling down to **Connection string** and clicking on the **URI** tab. You should see a string looking like `postgresql://postgres:[YOUR-PASSWORD]@host:5432/postgres`.
### Run database migrations
```sh
npm m:latest
```### Run the seed data
```sh
npm s:run
```