Skip to content

Commit 32a9a17

Browse files
committed
fix: update default localhost port from 8000 to 8010
1 parent 16e1802 commit 32a9a17

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ POSTHOG_PROJECT_API_KEY=phc_your_project_api_key_here
88
POSTHOG_PERSONAL_API_KEY=phx_your_personal_api_key_here
99

1010
# PostHog host URL (remove this line if using posthog.com)
11-
POSTHOG_HOST=http://localhost:8000
11+
POSTHOG_HOST=http://localhost:8010

example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def load_env_file():
3333
# Get configuration
3434
project_key = os.getenv("POSTHOG_PROJECT_API_KEY", "")
3535
personal_api_key = os.getenv("POSTHOG_PERSONAL_API_KEY", "")
36-
host = os.getenv("POSTHOG_HOST", "http://localhost:8000")
36+
host = os.getenv("POSTHOG_HOST", "http://localhost:8010")
3737

3838
# Check if project key is provided (required)
3939
if not project_key:

0 commit comments

Comments
 (0)