hahaha, yeah! I like adding those little nuggets to break the seriousness... sort of how my focus wanders every now and then. I'm happy you found it nice instead of distracting 😅
@@AtilaDotIO I totally agree, the Steve was on point, made me smile. The Deadpool audio was distracting though. Too much background noise in that clip, would've been better/funnier muted.
The idea of this guide was to show that SolidStart has all you need to roll your own auth system and how to do it. I have a few follow-ups planned already (for verifying emails, OTP tokens, and SSO) But if you're in need of SSO right now, I'd recommend MediaKit/Auth, it uses Auth.js and would then cover google and other SSO providers. The guide I'm preparing is with AuthPC (mediakit-taupe.vercel.app/authpc/introduction) which uses MediaKit/Auth and so you can use for that. 😉
That's reasonable, I wouldn't hold it against you. It may get hard to maintain revalidating all of them or it can cause some unnecessary requests. Hopefully you have only a few methods that depends on the session and thus the rest would cascade down if really necessary.
Source code for this video:
github.com/atilafassina/auth-unstorage
Thanks for the great content...
Thank you Atila for this channel... been a great ressource for leveling up SolidStart dev skills.
Appreciate you saying that!! There much more coming! 😎
Thank you! Great video.
Thanks a lot, Chris! I hope it's aligned with what you were thinking for CSRF Protection and that it helps you moving forward 😊
Damn, that Minecraft Steve was on point 👌 14:13
hahaha, yeah! I like adding those little nuggets to break the seriousness... sort of how my focus wanders every now and then. I'm happy you found it nice instead of distracting 😅
@@AtilaDotIO I totally agree, the Steve was on point, made me smile. The Deadpool audio was distracting though. Too much background noise in that clip, would've been better/funnier muted.
Woah I came from X I am learning solid I didn't know about your channel really good stuff please create more solid stuff.
Thanks a lot for this wholesome comment!! 😎
it makes my day knowing people are enjoying it and it fuels my motivation!
From twitter you mean?
@@jp263 yep😁
Could have included a login with google setup ✌😁 But thanks Atila!
The idea of this guide was to show that SolidStart has all you need to roll your own auth system and how to do it. I have a few follow-ups planned already (for verifying emails, OTP tokens, and SSO)
But if you're in need of SSO right now, I'd recommend MediaKit/Auth, it uses Auth.js and would then cover google and other SSO providers.
The guide I'm preparing is with AuthPC (mediakit-taupe.vercel.app/authpc/introduction) which uses MediaKit/Auth and so you can use for that. 😉
how did you get solid icons in your explorer 🤯
my VSCode settings json:
```json
"catppuccin-icons.associations.files": {
"app.config.ts": "solid"
},
"catppuccin-icons.associations.extensions": {
"tsx": "solid",
"jsx": "solid"
}
```
I use catppuccin.com/ theme and icons
On login/logout I would just invalidate all the cache keys. You never know ;)
That's reasonable, I wouldn't hold it against you.
It may get hard to maintain revalidating all of them or it can cause some unnecessary requests.
Hopefully you have only a few methods that depends on the session and thus the rest would cascade down if really necessary.