After following instructions from README, navigating to localhost:3000 triggers this line which produces following error (which suggests that some step in instructions is missing in order to initialize the database)
[Nest] 22180 - 01/03/2023, 3:27:40 PM ERROR [ExceptionsHandler]
Invalid `prisma.user.findUnique()` invocation:
The table `public.User` does not exist in the current database.
Update: From experimenting, it seems README should include that the following command is needed:
yarn prisma:migrate:dev init
After following instructions from README, navigating to localhost:3000 triggers this line which produces following error (which suggests that some step in instructions is missing in order to initialize the database)
Update: From experimenting, it seems README should include that the following command is needed:
yarn prisma:migrate:dev init