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

Поделиться
HTML-код
  • Опубликовано: 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 RUclips 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 .

  • @kevin-howard
    @kevin-howard 20 дней назад

    Thanks for the tutorial !

    • @coderyan
      @coderyan  20 дней назад +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?

  • @evansensteen7000
    @evansensteen7000 10 дней назад

    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  10 дней назад +1

      Happy it helped!

  • @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 13 дней назад

    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 13 дней назад +2

      change the port to 5432 in connection string it will work

    • @oghenefejiroprinceimene6090
      @oghenefejiroprinceimene6090 13 дней назад

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

    • @rayhadif
      @rayhadif 5 дней назад

      @@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