The OpenSky OAuth2 client credentials live in the repo dir as a JSON file; gitignore them (and .env/*.secret/*credentials*.json) so they can never be accidentally committed or shipped. They stay server-side only. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
11 lines
259 B
Plaintext
11 lines
259 B
Plaintext
.DS_Store
|
|
*.pyc
|
|
__pycache__/
|
|
# Local recorder database (record.py) — dev-only, never committed or deployed.
|
|
data/
|
|
# Secrets — API credentials must never be committed or deployed (server-side only).
|
|
openskycredentials.json
|
|
*credentials*.json
|
|
*.secret
|
|
.env
|