File tree Expand file tree Collapse file tree 4 files changed +323
-169
lines changed
Expand file tree Collapse file tree 4 files changed +323
-169
lines changed Original file line number Diff line number Diff line change 1+ # PostHog API Configuration
2+ # Copy this file to .env and update with your actual values
3+
4+ # Your project API key (found on the /setup page in PostHog)
5+ POSTHOG_PROJECT_API_KEY = phc_your_project_api_key_here
6+
7+ # Your personal API key (for local evaluation and other advanced features)
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
Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ set_source_and_root_dir
66ensure_virtual_env
77
88if [[ " $1 " == " --check" ]]; then
9- black --check .
10- isort --check-only .
9+ ruff format --check .
1110else
12- black .
13- isort .
11+ ruff format .
1412fi
You can’t perform that action at this time.
0 commit comments