Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,19 @@ Here is what you need to be able to run Cal.com.
- Use `openssl rand -base64 32` to generate a key and add it under `NEXTAUTH_SECRET` in the `.env` file.
- Use `openssl rand -base64 24` to generate a key and add it under `CALENDSO_ENCRYPTION_KEY` in the `.env` file.

**Windows users**: After setting up your `.env` file, you may encounter an issue with `packages/prisma/.env` being a symlink that fails with "unexpected character / in variable name". This happens because Windows doesn't handle Unix-style symlinks properly.

**Option 1: Use commands** (if you have Git Bash or WSL):
```sh
rm packages/prisma/.env
cp .env packages/prisma/.env
```

**Option 2: Do this manually**:
1. Delete the file `packages/prisma/.env` (it's actually a symlink)
2. Copy your `.env` file from the root directory
3. Paste it into the `packages/prisma/` folder

5. Setup Node
If your Node version does not meet the project's requirements as instructed by the docs, "nvm" (Node Version Manager) allows using Node at the version required by the project:

Expand Down
1 change: 1 addition & 0 deletions packages/app-store/redirect-apps.generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const REDIRECT_APPS = [
"retell-ai",
"synthflow",
"telli",
"link-as-an-app",
"vimcal",
"wordpress",
"zapier",
Expand Down
Loading