Build a Full Stack App: Next.js, Supabase, Prisma & Tailwind

Поділитися
Вставка
  • Опубліковано 8 тра 2024
  • Today, we build an application using Supabase, Next.js, Prisma, And Tailwind CSS. This is a very beginner friendly, basic application that you can complete fast.
    Final Code: github.com/coderyansolomon/pr...

КОМЕНТАРІ • 23

  • @iancarr3923
    @iancarr3923 2 місяці тому +1

    Worked first time out of the box. Great help in deciding to use Prisma with Supabase.

  • @Salah-YT
    @Salah-YT 2 місяці тому +2

    Thank you so much for your help. It was nice and easy, and I appreciate how you always take care of beginners. If you're up for it, I'd like to challenge you to create a modern full-stack portfolio for a developer using Prisma, Supabase, Tailwind, and authentication. I mean a good backend and nice design and I look for projects like this i can't find it on UA-cam so up to you bro but if you do it I'm sure many people will love it. Thanks! 🙂

  • @LarusYang
    @LarusYang 2 місяці тому

    Useful tutorial ,thanks a lot .

  • @evansensteen7000
    @evansensteen7000 7 днів тому

    indeed you are a good teacher, what looks to be difficult to me you have made it easy, thanks I'm also looking forward on how i can update the post

    • @coderyan
      @coderyan  7 днів тому +1

      Happy it helped!

  • @kevin-howard
    @kevin-howard 17 днів тому

    Thanks for the tutorial !

    • @coderyan
      @coderyan  17 днів тому +1

      You’re welcome!

  • @ninjagaskin
    @ninjagaskin 2 місяці тому +1

    thanks for the clean tutorial!
    any chance you found out more about the "Database cant reach server" error?

  • @rig-xf6or
    @rig-xf6or 2 місяці тому

    So to add auth - do we manage the auth tables (eg user) via prisma or supabase?

  • @mounir101
    @mounir101 2 місяці тому

    Great video, bro. I already have a XATA account, but never used with PRISMA, does it work quite well in any project like SUPABASE? and thanks so much for the hard work.

  • @leonhossain8324
    @leonhossain8324 2 місяці тому

    Where can I learn supabase from? I really struggle with using supabase

  • @victorkadiata
    @victorkadiata 2 місяці тому

    Can we create multiple server actions in a same file? Eg. Deletetodo and addtodo functions export in a same file instead of having two separate files?

    • @namyoungkim1073
      @namyoungkim1073 2 місяці тому +1

      Yes. You can create as many as you want.

  • @zainn7336
    @zainn7336 2 місяці тому

    Sir i have been working on prisma , supabase , next js project. The error you got I am already stuck at that. Nothing is work means restart server nor working att all . npx prisma migrate command is working but prisma client error is comming.

    • @Productiveho
      @Productiveho Місяць тому

      Samee , stuck for 2days .
      did u found any solution??

    • @zainn7336
      @zainn7336 Місяць тому

      @@Productiveho yes i got it , this error is occuring due to password. When you create a project in supabase there is an option generate password go with that option and copy that password into env , instead of making your own password because in our own password we might be added some special character, as in my case i added "@" whose access code is different in term of next js , INSTEAD of these you should go with generate password option in supabase that password will be simpler and it will work easily with supabase.
      please let me know if u again getting error.

    • @Productiveho
      @Productiveho Місяць тому

      @@zainn7336 I was able to fix my error, for my case i had 2 URL mode i switched to only session URL and error was gone , and yes your way is legit too . Number and speixal character in password cause trouble.
      Now im working on new error 😀😀

  • @oghenefejiroprinceimene6090
    @oghenefejiroprinceimene6090 10 днів тому

    hey thanks but my migration did not work.. no error in the terminal and the terminal did not close .. the port for me is 6543 ..tried for over 5hours .. dont know if u have any suggestion

    • @user-sm3hd9xl1o
      @user-sm3hd9xl1o 9 днів тому +2

      change the port to 5432 in connection string it will work

    • @oghenefejiroprinceimene6090
      @oghenefejiroprinceimene6090 9 днів тому

      @@user-sm3hd9xl1o tried it and it worked..thank you very much 🙏🙏🙏

    • @rayhadif
      @rayhadif День тому

      @@user-sm3hd9xl1o thanks you saved my life, i've been searching this for a couple weeks

  • @otisrancko
    @otisrancko 2 місяці тому +1

    Is it best practice to repeat initialising prisma client in different server actions file?? Are there any benefits?

    • @coderyan
      @coderyan  2 місяці тому +1

      No I don’t think there are any benefits. I should have just created one client and used that across different server actions