Skip to content

Commit 6a3e7ef

Browse files
chore: Improvements to example.py (#310)
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent 20b8825 commit 6a3e7ef

File tree

4 files changed

+323
-169
lines changed

4 files changed

+323
-169
lines changed

.env.example

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

bin/fmt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ set_source_and_root_dir
66
ensure_virtual_env
77

88
if [[ "$1" == "--check" ]]; then
9-
black --check .
10-
isort --check-only .
9+
ruff format --check .
1110
else
12-
black .
13-
isort .
11+
ruff format .
1412
fi

0 commit comments

Comments
 (0)