webdevkaleem
TTCTheo's Typesafe Cult
•Created by Manqo on 3/23/2025 in #questions
Fetching User Session Data on the Client Side with useSession
but all the auth is easily manageable
so thats a win in my opinion
20 replies
TTCTheo's Typesafe Cult
•Created by Manqo on 3/23/2025 in #questions
Fetching User Session Data on the Client Side with useSession
yeah. i use private procedures
you can't redirect from the server so you'll have to do that on the client.
20 replies
TTCTheo's Typesafe Cult
•Created by shawn on 3/26/2025 in #questions
Auth in middleware
couldn't agree more
27 replies
TTCTheo's Typesafe Cult
•Created by shawn on 3/26/2025 in #questions
Auth in middleware
assuming you don't do any auth checks inside of your
layout.tsx
27 replies
TTCTheo's Typesafe Cult
•Created by shawn on 3/26/2025 in #questions
Auth in middleware
if your api endpoints are secure then you have nothing to worry about
thats how its supposed to be in the backend world
27 replies
TTCTheo's Typesafe Cult
•Created by shawn on 3/26/2025 in #questions
Auth in middleware
the weird naming convention is to blame
27 replies
TTCTheo's Typesafe Cult
•Created by shawn on 3/26/2025 in #questions
Auth in middleware
you're right
the endpoints themselves should be secure
handling auth inside your next middleware or layouts is not secure enough
27 replies
TTCTheo's Typesafe Cult
•Created by krm42 on 2/17/2025 in #questions
Folders in UploadThing
mark answered this questions here as well
https://discord.com/channels/966627436387266600/1345368454525620305/1345498851917692979
5 replies
TTCTheo's Typesafe Cult
•Created by krm42 on 2/17/2025 in #questions
Folders in UploadThing
i think
folders
would mean that we can point files
to a folder
and store the folder.key
in our db
to be used later
upon usage we can list all the files
inside the folder
instead of storing all the files.keys
. CRUD operations basically
i could be wrong about that
as for a solution, uploadthing expects you to store the image key
or url
in your own db to be referred later for extraction
you'll have to store the total storage usage and file keys / data yourself5 replies
TTCTheo's Typesafe Cult
•Created by shawn on 3/26/2025 in #questions
Auth in middleware
really wish there was a real middleware in next, like express
so we won't have to deal with this issue
27 replies
TTCTheo's Typesafe Cult
•Created by shawn on 3/26/2025 in #questions
Auth in middleware
yes
to be really safe you'll have to protect all of the routes under
admin/*
separately
if you use trpc you can use procedures for this27 replies
TTCTheo's Typesafe Cult
•Created by Manqo on 3/23/2025 in #questions
Fetching User Session Data on the Client Side with useSession
yeah it makes sense
20 replies
TTCTheo's Typesafe Cult
•Created by Manqo on 3/23/2025 in #questions
Fetching User Session Data on the Client Side with useSession
i prefer to do auth checks on trpc instead of the components themselves
20 replies
TTCTheo's Typesafe Cult
•Created by Manqo on 3/23/2025 in #questions
Fetching User Session Data on the Client Side with useSession
well it depends what logic you want to do inside of your middleware
you can check out the recent nextjs middleware drama for more information on what is the best practice for auth checks
theo also made a video on it
20 replies
TTCTheo's Typesafe Cult
•Created by nicholoading on 3/24/2025 in #questions
Significant slow performace (in dev) with create t3 app
yeah
after watching the vid and reading the replies
it is how we use trpc that matters
really weird to think that this is only happening in prod as turbo pack is used in dev and webpack in prod (by default)
12 replies
TTCTheo's Typesafe Cult
•Created by nicholoading on 3/24/2025 in #questions
Significant slow performace (in dev) with create t3 app
btw
can you check the regions of your serverless functions and neon db instance
ideally they should be in the same region
12 replies
TTCTheo's Typesafe Cult
•Created by nicholoading on 3/24/2025 in #questions
Significant slow performace (in dev) with create t3 app
ill surely look into this thread
12 replies
TTCTheo's Typesafe Cult
•Created by nicholoading on 3/24/2025 in #questions
Significant slow performace (in dev) with create t3 app
for context
i mainly use nextjs (t3 stack) for my projects and it works perfectly fine (ignoring the cold starts on vercel).
i might deploy the project to railway if i don't want to bother with the cold starts
12 replies
TTCTheo's Typesafe Cult
•Created by nicholoading on 3/24/2025 in #questions
Significant slow performace (in dev) with create t3 app
for reference fluid compute allows multiple requests to be handled at the same time, thus minimizing cold starts
12 replies
TTCTheo's Typesafe Cult
•Created by nicholoading on 3/24/2025 in #questions
Significant slow performace (in dev) with create t3 app
well then the delay is from vercel's serverless functions (lambda functions) warming up
after some googling it says that they need smwhere from a few 100ms - 3s to warm up
i would recommend you to enable fluide compute from your project's settings
theo did a really indepth video about fluide compute as well if you wanna check that out
https://www.youtube.com/watch?v=156FSMbyMPQ
12 replies