Bring me to life!

We'll set up everything to get a fully fonctional directory in under 10min

Generate the database with Prisma

Run the database generation:

Terminal
npx prisma migrate dev --skip-seed

From now the following steps are optional but greatly recommended to get all the features to work from the beginning

Run your app:

Terminal
npm run dev

Open your app and signup with mail (it will be your admin) by clicking the SignIn button on the top-rigth corner.

Update the seeds (prisma/seed.ts) to populate your directory and run:

Terminal
npx prisma db seed

...

Congrats, it's ALIVE! 🥳

Last updated