Updates README (#1811)

This commit is contained in:
Omar López 2022-02-11 09:15:52 -07:00 committed by GitHub
parent 6fe824088a
commit 63bd9a1202
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
</details>
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