An app to help you get to your financial destination
First, install all dependencies:
pnpm installCopy the .env.example file to .env.local and fill in the values or
contact an admin for the content of the file
-
Generate key using
pnpm run generateKey
The output of this command will be in your clipboard
-
Paste the result into your .env.local file with the prefix JWT_SIGNING_PRIVATE_KEY=
it should look something like
javascript JWT_SIGNING_PRIVATE_KEY={"kty":"oct","kid":"kidddddddddddddddddd","alg":"HS512","k":"kkkkkkkkkkkkkkkkkk"}
For more info see https://next-auth.js.org/warnings#jwt_auto_generated_signing_key
Then, run the development server:
pnpm dlx prisma migrate reset
pnpm dev