Run the following command to install dependencies
npm install
Run the following to start the project and run the dev database
docker-compose -f docker-compose.dev.yml up -d
Open http://localhost:3000 with your browser to see the result.
npx prisma db push
Run the following to lint and format the project
npm run lint
# Or
next lint
Add --fix
to automatically fix linting problems
Run the following to open Cypress
npm run cypress:open
Please view in private channel #dotenv
If you make changes to prisma models, you can migrate the database by
npx prisma migrate dev --name <migration-name>
Note: migration-name
should be a short description of the changes you made
You can view your tables, columns, and make changes to your local database by
npm run prisma:explore
Generate a png image of the latest database UML diagram via the database schema by
prisma-uml ./prisma/schema.prisma -o png -f ./docs/design/databaseUML.png
Note: file will be added to ./docs/design directory