From 63bd9a120253053b84483cd5a1e03e04d78ed0c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20L=C3=B3pez?= Date: Fri, 11 Feb 2022 09:15:52 -0700 Subject: [PATCH] Updates README (#1811) --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 01bb3e0eac..a8eef93c33 100644 --- a/README.md +++ b/README.md @@ -100,10 +100,10 @@ Here is what you need to be able to run Cal. cd cal.com ``` -1. Copy `.env.example` to `.env` +1. Copy `apps/web/.env.example` to `apps/web/.env` ```sh - cp .env.example .env + cp apps/web/.env.example apps/web/.env ``` 1. Install packages with yarn @@ -157,7 +157,7 @@ yarn dx 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 `prisma/schema.prisma`) +1. Set up the database using the Prisma schema (found in `apps/web/prisma/schema.prisma`) ```sh npx prisma migrate deploy @@ -188,10 +188,10 @@ yarn dx # In first terminal yarn dx # In second terminal -yarn test-playwright +yarn workspace @calcom/web test-playwright # To open last HTML report run: -yarn playwright-report +yarn workspace @calcom/web playwright-report ``` ### Upgrading from earlier versions