Welcome! Feel free to use this starter project to get you going on your takehome exercise.
Getting setup:
- First clone the project into your own github account. This will allow us to have access to it when you are done.
- Then clone your copy to your local development environment.
npm i
To run the application locally:
npm run dev
Now you are free to develop features. Please use a feature branch for each so we can more easily follow what you have done.
We have configured Prisma ORM to use a sqlite database located in prisma/dev.db
. If you want to modify the schema, use these steps:
- update
prisma/schema.prisma
- run
npx prisma migrate dev
to create the migration
If you need to you can always reset the database with npx prisma reset