DEV Community

Discussion on: Prisma + Postgres

Collapse
 
awalias profile image
awalias • Edited

If anyone needs help regarding Prisma / Postgres you can get support in our discord

Collapse
 
_tylerhillery profile image
Tyler Hillery

The discord is very welcoming to new comers!

Collapse
 
tylerhillery profile image
Tyler Hillery

Prisma + Supabse is an awesome combo.

Collapse
 
jessshears profile image
Jessica Shears

This is awesome!

Collapse
 
samrose_56 profile image
samrose

Thank you so much. I wish I had known how easy this was in the past. Grateful for this resource!

Collapse
 
francesco_sansalvadore_dd profile image
Francesco Sansalvadore

Prisma + Supabase is the perfect combo.

Collapse
 
dshukertjr profile image
Tyler Shukert

I know a lot of apps built with this combination!

Collapse
 
abc3 profile image
abc3 πŸ‡ΊπŸ‡¦

Supabase and Prisma makes development so much easier. Love this combo

Collapse
 
canumula profile image
Chandana Anumula

This is great!!

Collapse
 
akorotkov profile image
Alexander Korotkov

Brilliant, thank you!

Collapse
 
alexander_korotkov_0170b0 profile image
Alexander Korotkov

Thank you!

Collapse
 
jonmeyers_io profile image
Jon

This is so sick! πŸ’―

Collapse
 
imor80 profile image
Raminder Singh

I was just trying out setting up Prisma with Postgres and found this guide. Thanks for writing this.

Collapse
 
raminder_singhsidhu_ea69 profile image
Raminder Singh Sidhu

Thank you so much, this is what I was looking for. A great guide to setup Prisma with Postgres.

Collapse
 
joshenlim profile image
Joshen Lim

Hopefully this might be helpful - there's a set of handy instructions on your projects' home page if you click the "Connect" button and select the "ORMs" tab
Image description

Collapse
 
supabase_io profile image
Supabase

Yes! Thanks for sharing @joshenlim

Collapse
 
sivenruot profile image
Lee AVULAT

Nice guide. I would add that if you want to use prisma to generate migrations. For those to be usable with supabase-js and postgrest I recommend to leverage the native database functions in your "id" definitions like mentioned here: github.com/supabase/cli/issues/277...

Collapse
 
flutter_for_life profile image
flutter_for_life

Nice share!

Collapse
 
crispy_1975 profile image
Crispy1975 • Edited

Supabase and Prisma is the perfect match for us, it makes life so easy to build things quickly.

Collapse
 
grsouza profile image
Guilherme Souza

That is awesome!

Collapse
 
sreyas_udayavarman_496239 profile image
Sreyas Udayavarman

Thankyou!

Collapse
 
supa_community profile image
Supabase Community

Prisma Postgres is an incredible pairing for a backend. Both tools are used and loved by the Supabase Community.

Collapse
 
timnpalmer profile image
timnpalmer

AMAZING!!

Collapse
 
joel_lee_f718aee79f12cef2 profile image
Joel Lee

Thanks, will check it out

Collapse
 
jgoux profile image
Julien Goux

Prisma and Supabase are really a great fit. Great combo!

Collapse
 
sausagebutty profile image
David Wilson

yes yes yes

Collapse
 
kamil_ogrek_710afe8e9268 profile image
Kamil OgΓ³rek

Always happy to help

Collapse
 
supadavid profile image
SupaDavid

awesome

Collapse
 
deji_ibrahim_6039f39d0278 profile image
Deji Ibrahim

Easy to setup πŸ‘Œ, thanks!

Collapse
 
chasers profile image
Chase Granberry

πŸ’š Prisma + Supabase

Collapse
 
karloison_27 profile image
Karlo Ison

Awesome! 🀩

Collapse
 
illiab profile image
Illia Basalaiev

This is amazing! πŸ’ͺπŸ’ͺ

Collapse
 
thorwebdev profile image
Thor ι›·η₯ž Schaeff

You can also find some details on using Row Level Security (RLS) with Prisma here: supabase.com/partners/integrations...

Collapse
 
jonmeyers_io profile image
Jon

This is an absolute game changer!

Collapse
 
gregnr profile image
Greg Richardson

Super seamless, nice πŸ˜ƒπŸš€

Collapse
 
steve_val profile image
Steve_Val

The memes in there are crazy lol

Also note for anyone else who's wondering the official Prisma documentation related to this is here: prisma.io/docs/orm/overview/databa...

The important step adding

datasource db {
  provider  = "postgresql"
  url       = env("DATABASE_URL")
  directUrl = env("DIRECT_URL")
}
Enter fullscreen mode Exit fullscreen mode

Very nice.

Collapse
 
swamp_dog profile image
swamp_dog

I was trying initially without the direct_url but apparently it's required if you need to do migrations.