We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16e1802 commit 32a9a17Copy full SHA for 32a9a17
2 files changed
.env.example
@@ -8,4 +8,4 @@ POSTHOG_PROJECT_API_KEY=phc_your_project_api_key_here
8
POSTHOG_PERSONAL_API_KEY=phx_your_personal_api_key_here
9
10
# PostHog host URL (remove this line if using posthog.com)
11
-POSTHOG_HOST=http://localhost:8000
+POSTHOG_HOST=http://localhost:8010
example.py
@@ -33,7 +33,7 @@ def load_env_file():
33
# Get configuration
34
project_key = os.getenv("POSTHOG_PROJECT_API_KEY", "")
35
personal_api_key = os.getenv("POSTHOG_PERSONAL_API_KEY", "")
36
-host = os.getenv("POSTHOG_HOST", "http://localhost:8000")
+host = os.getenv("POSTHOG_HOST", "http://localhost:8010")
37
38
# Check if project key is provided (required)
39
if not project_key:
0 commit comments