Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion docs/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import config from "@project-config"
<div>
## Quick start

Feeling like an eager beaver? Jump in to the quick start docs and get making your first request:
Feeling like an eager beaver? Jump into the quick start docs and get making your first request:

<div className="flex">
<Button size="smb" variant="pill" href="/docs/introduction/quick-start">
Expand Down
6 changes: 3 additions & 3 deletions docs/self-hosting/docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Note: `docker compose` without the hyphen is now the primary method of using doc
cd cal.com
```

3. Prepare your configuration: Rename .env.example to .env and then update .env
3. Prepare your configuration: Rename `.env.example` to `.env` and then update `.env`
```
cp .env.example .env
```
Expand Down Expand Up @@ -70,7 +70,7 @@ Note: `docker compose` without the hyphen is now the primary method of using doc

6. Open a browser to [http://localhost:3000](http://localhost:3000), or your defined NEXT_PUBLIC_WEBAPP_URL. The first time you run Cal.com, a setup wizard will initialize. Define your first user, and you're ready to go!

### Update Calcom Instance
### Update Cal.com Instance

1. Stop the Cal.com stack

Expand Down Expand Up @@ -118,7 +118,7 @@ For more detailed instructions on how to build and configure your own Docker ima

### CLIENT_FETCH_ERROR

If you experience this error, it may be the way the default Auth callback in the server is using the WEBAPP_URL as a base url. The container does not necessarily have access to the same DNS as your local machine, and therefor needs to be configured to resolve to itself. You may be able to correct this by configuring `NEXTAUTH_URL=http://localhost:3000/api/auth`, to help the backend loop back to itself.
If you experience this error, it may be the way the default Auth callback in the server is using the WEBAPP_URL as a base url. The container does not necessarily have access to the same DNS as your local machine, and therefore needs to be configured to resolve to itself. You may be able to correct this by configuring `NEXTAUTH_URL=http://localhost:3000/api/auth`, to help the backend loop back to itself.
```
docker-calcom-1 | @calcom/web:start: [next-auth][error][CLIENT_FETCH_ERROR]
docker-calcom-1 | @calcom/web:start: https://next-auth.js.org/errors#client_fetch_error request to http://testing.localhost:3000/api/auth/session failed, reason: getaddrinfo ENOTFOUND testing.localhost {
Expand Down
2 changes: 1 addition & 1 deletion docs/self-hosting/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ For preview deployments on **Vercel**, please leave the following environment va
```
openssl rand -base64 32
```
(or another secret generator tool if you prefer) to generate a key and add it under `NEXTAUTH_SECRET` in the .env file.
(or another secret generator tool if you prefer) to generate a key and add it under `NEXTAUTH_SECRET` in the `.env` file.

5. You'll also want to fill out the `.env.appStore` file similar to the `.env` file as this includes keys to enable apps.

Expand Down
Loading