File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ POSTHOG_PROJECT_API_KEY=phc_your_project_api_key_here
88POSTHOG_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
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def load_env_file():
3333# Get configuration
3434project_key = os .getenv ("POSTHOG_PROJECT_API_KEY" , "" )
3535personal_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)
3939if not project_key :
Original file line number Diff line number Diff line change 88# Initialize PostHog client
99posthog .api_key = "phc_..."
1010posthog .personal_api_key = "phs_..." # or "phx_..."
11- posthog .host = "http://localhost:8000 " # or "https://us.posthog.com"
11+ posthog .host = "http://localhost:8010 " # or "https://us.posthog.com"
1212posthog .debug = True
1313
1414
You can’t perform that action at this time.
0 commit comments