nicoalbanese / kirimase

Build full-stack Next.js apps, incredibly fast
https://kirimase.dev
MIT License
2.58k stars 118 forks source link

Add Support for supabase #49

Open electroheadfx opened 1 year ago

electroheadfx commented 1 year ago

it would like nice: https://supabase.com

electroheadfx commented 1 year ago

hmm looks I can connect drizzle to supabase: https://orm.drizzle.team/docs/quick-postgresql/supabase so it should be seamless, anyone tested it ?

paradisi-davide-servizi commented 11 months ago

@electroheadfx i did, seems to be working nicely but keep in mind it's my first time working with supabase it would be extra nice tying in supabase auth to have a single solution for both database and auth...

edgarasben commented 9 months ago

Here is the Next.js Supabase starter, the latest way of implementing the Supabase Auth:

https://github.com/vercel/next.js/tree/canary/examples/with-supabase

OmegaHawkeye commented 7 months ago

Hey, really love the project. I wanted to ask if it is okay if I work on adding Supabase as an Auth Provider and make a PR for it?

Aymericr commented 7 months ago

Installing Supabase CLI and running it locally in Docker produces the following

DATABASE_URL="postgresql://postgres:postgres@127.0.0.1:54322/postgres"

Different from the Kirimase default:

DATABASE_URL="postgres://postgres:postgres@localhost:5432/{DB_NAME}"