InitializationError
this is my controller
async function signUp(req: Request, res: Response) {
req.body.password = await hashPassword(req.body.password);
req.body.birthDate = new Date(req.body.birthDate).toISOString();
try {
delete req.body.repeat_password;
const user = await User.createUser(req.body);
res.status(200).json(user);
} catch (error) {
if (error instanceof PrismaClientKnownRequestError)
res.status(400).json({ code: error.code, message: error.message });
else if (error instanceof Error)
res.status(400).json({
message: error.message || "Error Signing up user",
});
else res.status(400).json(error);
}
}
and this is my model function
import { Prisma, PrismaClient } from "@prisma/client";
const prisma = new PrismaClient();
async function createUser(user: User) {
try {
const result = await prisma.user.create({
data: {
username: user.username,
birthDate: user.birthDate,
password: user.password,
},
});
return result;
} catch (error) {
if (error instanceof Prisma.PrismaClientKnownRequestError) throw error;
throw error;
}
}
when i request to sign up user it return this error
{
"message": "\nInvalid prisma.user.create() invocation in\nC:\Users\ghera\OneDrive\Desktop\GithubRepo\Book_Tracker\server\src\models\userModel.ts:29:38\n\n 26 \n 27 async function createUser(user: User) {\n 28 try {\n→ 29 const result = await prisma.user.create(\nerror: Environment variable not found: DATABASE_URL."
}
Other models works find ( book model Category Model ) except for User model throws this error
I tried running prisma related commands to see if there is a connection and no i didnt face any error
1 Reply
You decided to hold for human wisdom. We'll chime in soon! Meanwhile,
#ask-ai
is there if you need a quick second opinion.