Updates README (#1811)
This commit is contained in:
parent
6fe824088a
commit
63bd9a1202
1 changed files with 5 additions and 5 deletions
10
README.md
10
README.md
|
@ -100,10 +100,10 @@ Here is what you need to be able to run Cal.
|
||||||
cd cal.com
|
cd cal.com
|
||||||
```
|
```
|
||||||
|
|
||||||
1. Copy `.env.example` to `.env`
|
1. Copy `apps/web/.env.example` to `apps/web/.env`
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
cp .env.example .env
|
cp apps/web/.env.example apps/web/.env
|
||||||
```
|
```
|
||||||
|
|
||||||
1. Install packages with yarn
|
1. Install packages with yarn
|
||||||
|
@ -157,7 +157,7 @@ yarn dx
|
||||||
</details>
|
</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 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
|
```sh
|
||||||
npx prisma migrate deploy
|
npx prisma migrate deploy
|
||||||
|
@ -188,10 +188,10 @@ yarn dx
|
||||||
# In first terminal
|
# In first terminal
|
||||||
yarn dx
|
yarn dx
|
||||||
# In second terminal
|
# In second terminal
|
||||||
yarn test-playwright
|
yarn workspace @calcom/web test-playwright
|
||||||
|
|
||||||
# To open last HTML report run:
|
# To open last HTML report run:
|
||||||
yarn playwright-report
|
yarn workspace @calcom/web playwright-report
|
||||||
```
|
```
|
||||||
|
|
||||||
### Upgrading from earlier versions
|
### Upgrading from earlier versions
|
||||||
|
|
Loading…
Reference in a new issue