You've probably got one of the first YT tutorials with Drizzle. Recently implemented multi-tenant auth in a Next app with tRPC recently using lucia-auth and some custom data flows for the tenants. This video would have certainly helped then to get an idea of how everything flowed into one another. Kudos and thanks for the video Tom.
@abubalo Жыл бұрын
You're the best thing to ever happen to my career. I have learned so much from your videos. Thank you for making these tutorials free for all. Love from 🇳🇬
@TomDoesTech Жыл бұрын
Thank you, that means a lot!
@euanmorgann Жыл бұрын
I have been refreshing the channel for 4 days waiting on this one! Gotta tell the mrs to go out tonight, it's just me and a multi-tenanted, role-based access control system
@euanmorgann Жыл бұрын
All seriousness though, can't wait to get stuck into this!
@TomDoesTech Жыл бұрын
hahaha!
@nyzss Жыл бұрын
both drizzle and fastify are libraries I wish to use more and you're helping me a ton with these videos!
@alexmg404 Жыл бұрын
Thanks for this. Practical examples of Drizzle are scant at the moment. Would love to see more on that.
@MerthanMerter9 ай бұрын
this tutorial is really amazing. considers all best practices and modern approaches. i am actually going to migrate from nestjs to this.
@yiannis_p Жыл бұрын
The drizzle bit was as if you read my mind on what I need to read up on next. Many thanks, top quality as always!
@aryanrahman3212 Жыл бұрын
Next up: Authorization using Access Control Lists. Didn't see an implementation of this yet anywhere on YT.
@aryanrahman3212 Жыл бұрын
BTW thanks for the amazing video. Can't express how grateful I am.
@Mexad0n Жыл бұрын
Thanks for the video. I'm currently on SaaS MT side-project with a different stack but the content brought me light on some principles I have struggled to understand.
@yashkhd1100 Жыл бұрын
Excellent video. Your videos are very well structured and codebase is nicely organized.
@jitxhere Жыл бұрын
Thanks for the video Tom. I have started this video and I am 100% sure this going to very informative. You are just awesome
@yogyyconst9 ай бұрын
i was tryhard implement this using mysql, lol. thanks i learn something with this tutorial
@williamcao5139 Жыл бұрын
Happy Birthday to you, Sir. Thanks for your amazing content
@mmzzzmeemee Жыл бұрын
I think more drizzle tutorial would be nice
@TomDoesTech Жыл бұрын
I have 2 more planned :)
@mmzzzmeemee Жыл бұрын
@@TomDoesTech sweet! next/express + drizzle would be nice
@good-dev-student Жыл бұрын
Hey Tom, Sending you lots of love ❤❤❤❤. As always, I've been watching numerous videos to support you, even during my break time. I just let the video keep playing 😁 What is the best way to conduct testing for this API project? Should I use Open API v3 in my project or opt for Postman or Thunder Client? Additionally, What is the recommended approach for database schema: Drizzle schema or Zod?
@TomDoesTech Жыл бұрын
Fastify apps are really easy to write tests for. You can create an instance of the server and then use the inject method
@FudgeRaco Жыл бұрын
Tom - You legend! I've been looking for a tutorial like this for ages. And you used Drizzle ORM which I believe is going to be huge. Question: You've created the permission as strings. Is this convention or is a separate table for permissions the convention. What's your personal preference?
@TomDoesTech Жыл бұрын
It really depends what you want to do. If you want your users to be able to create new permissions for their application, then you will need to create a table for the permissions. However, if you want to have a set of standard permissions that all applications share, then just hard code them as strings
@kylelambert__ Жыл бұрын
Really great explanation here, thank you so much. I’d love to hear your thoughts on a issue I’m having. I’ve never understood the reason to store permissions in the signed JWT. I understand you can pull the permissions from the token on every request and perform logic based on those permissions, but what happens if your permissions/or role have changed by a third-party. The permissions would then be stale. I guess this opens the case for querying the database on every request in order to get the most up-to-date role and permissions for the requesting user but then there’s no reason to save the permissions in the JWT if you’re going to do that. Personally I just store a userId and query the database for each requests but maybe that’s a naive implementation. Id love to hear your thoughts! Cheers 😅
@shin5302 Жыл бұрын
Thanks you for this amazing video. I got tons of knowledge. Btw, can you make a video that dive deeper into the role based access control system?
@clipstube76919 ай бұрын
Thank you Tom 🖤 You are the Best Can you do TypeScript video?
@TomDoesTech9 ай бұрын
I have lots of ts videos
@noyou174 Жыл бұрын
thank you for your great content 💖 very helpful video
@ayushgogna9732 Жыл бұрын
Learned alot today thanks Tom. I am thinking how it would look like with nextjs
@Kxneki2433 Жыл бұрын
Finally! A video
@Vaibhav-DN Жыл бұрын
Great content!
@ideatrails2257Ай бұрын
very nice, thanks.
@isaacfink123 Жыл бұрын
Thanjs for this tutorial, this made me realize I was designing authentication all wrong, just one question, is tgere a reason the permissions are stored on a separate table? It would make sense to just put it on the users object
@TomDoesTech Жыл бұрын
The permissions are stored on the role. You could put them on the user if you like, but you'd need to think about what happens if you add or remove a permission from a role
@onelook1870 Жыл бұрын
Do you plan to cover video on payment gateway, how to setup for recurring and verify using webhook?
@TomDoesTech Жыл бұрын
Like Stripe? I have a video on Stripe
@sebastian_garces Жыл бұрын
How would you handle permissions for a specific entity? for example if a user can create posts for a specific project only. Where would the identifier of the entity live? would it be ok to insert it in the permission string? "project::post:write" or would it be better to live in the db and introduce a permissions table that holds this information? If in db, I'm thinking you would want to create generic fields to that you don't have to create a join table for each entity that requires specific permissions. Thanks for the video.
@TomDoesTech Жыл бұрын
It depends how you determine what user can edit the specific post. For example, if they are the owner then you could do `project::post:write_own` or something then write the function to validate that permission
@JohnMcclaned Жыл бұрын
Can you please make a video using fastify with the ts-rest library and their fastify module? It's like trpc but for rest. It looks awesome but there is no content out on it :( Thanks! A nextjs / fastify/ ts-rest stack
@spellsaif Жыл бұрын
Thanks Sensei :)
@explorer-xe7rt6 ай бұрын
How can I use Postgres based schema multi-tenancy?
@johnkucharsky69278 ай бұрын
I have to add company before i start an application? So, there must be 2 steps on registration?
@TomDoesTech8 ай бұрын
Yeah, they need to register for a specific company
@filigretidean5255 Жыл бұрын
Hi tom, im building a hms and i need a solid structure for the multi-tenancy, i would love to pick your brain if possible
@mr.random8447 Жыл бұрын
If you got multiple instances of your server, is it sensible to decouple migrations from application startup? As if multiple instances spin up with migrations coupled to migration startup, you are running the same migration when a new server spins up.
@TomDoesTech Жыл бұрын
Yeah, you'd ideally run migrations in a pipeline
@outplays_311 ай бұрын
how can we create the migrations file naming as our preference?
@joshuastories Жыл бұрын
Amazing
@awekeningbro1207 Жыл бұрын
but how does the user login to the system in the frontend? do they have to type the application id as well each time they login? or can we hide it behind implementation like sub-domains?
@TomDoesTech Жыл бұрын
It really depends what your app is doing. Usually the application id will need to be included in the login request, so it can either be in the URL or hidden behind a URl/sub domain
@mohamedyoussef8835 Жыл бұрын
Awesome video +++++++++ 🙂
@sietze4716 Жыл бұрын
Do you recommend Drizzle over Prisma?
@TomDoesTech Жыл бұрын
I haven't thought about it enough to make those prescriptions. I think both have their place
@codernerd7076 Жыл бұрын
@TomDoesTech it depends on if Prisma sponsored the next video?! 😅
@tabliqatchi6696 Жыл бұрын
Wow 💖
@milon27 Жыл бұрын
how to regenerate new jwt token? when some user permission update?
@TomDoesTech Жыл бұрын
The permissions are stored on the JWT so you'd either have to get the user to logout and back in, or you could do periodic checks on the JWT and update it
@dontscrollitt Жыл бұрын
I am begiinner. But I stucks in the logic building help me.
@codewithalade5399 Жыл бұрын
Drizzle doesn't support transaction
@TomDoesTech Жыл бұрын
I could be wrong but you don't really need it to. You can can create a client and do it yourself with Postgres
@andrewsherman4610 Жыл бұрын
Drizzle supports transactions. We just didn't move it to web docs yet. Will do it asap and thanks for pointing that out!
@mileicampeonmundial Жыл бұрын
it might be me but it looks like a lot of boilerplate
@TomDoesTech Жыл бұрын
Compared to what? The start of any app is going to be a lot of boilerplate