From 9a8512758b2f40e5b8777e355200364f4820177a Mon Sep 17 00:00:00 2001 From: chimpdev Date: Sun, 11 Aug 2024 01:32:35 +0300 Subject: [PATCH] Remove unused PostHog environment variables from README --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 1182dd5d..a103ffc1 100644 --- a/README.md +++ b/README.md @@ -74,8 +74,6 @@ Create a `.env` file in the `client` directory with the following environment va ```env ANALYZE=false NEXT_PUBLIC_CF_SITE_KEY=0x0000000000000000000000 -NEXT_PUBLIC_POSTHOG_KEY=phc_000000000000000000000000 -NEXT_PUBLIC_POSTHOG_HOST=https://us.i.posthog.com ``` ##### Parameters @@ -83,13 +81,10 @@ NEXT_PUBLIC_POSTHOG_HOST=https://us.i.posthog.com | ---- | ----------- | | `ANALYZE` | Set to `true` to enable bundle analysis. | | `NEXT_PUBLIC_CF_SITE_KEY` | Cloudflare site key for Turnstile. | -| `NEXT_PUBLIC_POSTHOG_KEY` | PostHog project API key. | -| `NEXT_PUBLIC_POSTHOG_HOST` | PostHog host URL. | > [!NOTE] > - When `ANALYZE` is set to `true`, the client will generate a bundle analysis report. This is useful for debugging and optimizing the client bundle. > - Refer to the [Cloudflare Turnstile documentation](https://developers.cloudflare.com/turnstile/get-started/#get-a-sitekey-and-secret-key) to get your Turnstile site key. -> - The `NEXT_PUBLIC_POSTHOG_KEY` and `NEXT_PUBLIC_POSTHOG_HOST` values are used for setting up analytics on the website. We use [PostHog](https://posthog.com) for analytics. You can get the project API key from the PostHog dashboard. ### Environment Variables Configuration (Server)