From 4dec3fb97c44b19f813d6dc034be11a64759e71f Mon Sep 17 00:00:00 2001 From: Taha <57881112+taha-programmer@users.noreply.github.com> Date: Sat, 16 Jul 2022 21:30:58 +0200 Subject: [PATCH] Fix the path for "schema.prisma" file in README.md (#3386) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 23b2a4b9d0..b758dea3e9 100644 --- a/README.md +++ b/README.md @@ -167,7 +167,7 @@ echo 'NEXT_PUBLIC_DEBUG=1' >> .env 1. Set a 32 character random string in your .env file for the `CALENDSO_ENCRYPTION_KEY` (You can use a command like `openssl rand -base64 24` to generate one). -1. Set up the database using the Prisma schema (found in `apps/web/prisma/schema.prisma`) +1. Set up the database using the Prisma schema (found in `packages/prisma/schema.prisma`) ```sh yarn workspace @calcom/prisma db-deploy @@ -189,7 +189,7 @@ echo 'NEXT_PUBLIC_DEBUG=1' >> .env 1. Click on the `User` model to add a new user record. 1. Fill out the fields `email`, `username`, `password`, and set `metadata` to empty `{}` (remembering to encrypt your password with [BCrypt](https://bcrypt-generator.com/)) and click `Save 1 Record` to create your first user. - > New users are set on a `TRIAL` plan by default. You might want to adjust this behavior to your needs in the `apps/web/prisma/schema.prisma` file. + > New users are set on a `TRIAL` plan by default. You might want to adjust this behavior to your needs in the `packages/prisma/schema.prisma` file. 1. Open a browser to [http://localhost:3000](http://localhost:3000) and login with your just created, first user. ### E2E-Testing