Zurnadürüm
Explore posts from serversPPrisma
•Created by Zurnadürüm on 7/24/2024 in #help-and-questions
Prisma doesn't see .env.development
Hi! I want to seperate my dev and prod env on my NextJS project. NextJS follow this rule by default,
next dev
use .env.development
and next build
use .env
or .env.production
.
But Prisma doesn't follow this rule. When I want to migrate/generate prisma-client on my test env, that DB URLs located at .env.development
, Prisma always use .env
, and tries to connect prod database.
My package.json file scripts look like that:
But I get error P1013
when I try to run migrate:dev
script. How can I solve this?
- Tried to rename .env
-> .env.production
.
- Installed dotenv-cli
and dotenv
that said on Prisma docs.
My Postgresql DB sits on Docker. Prisma was working before seperating my prod(deploying initial version) and test env.
FYI, my schema.prisma connection is that:
4 replies
TTCTheo's Typesafe Cult
•Created by Zurnadürüm on 4/12/2024 in #questions
Next redirect() gives date.getTime() error
I use lucia auth with nextjs. And all things are okay until i add
redirect('/blog/login')
fuction into my code. then even if i had session cookie in my browser i get error about
here is my protected route code:
And thats my validateSession function.
1 replies