gitignore API credentials (openskycredentials.json + secret patterns)

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>
This commit is contained in:
jing 2026-07-13 21:57:29 +10:00
parent 0162ec0cdf
commit 1e5a241f05

5
.gitignore vendored
View File

@ -3,3 +3,8 @@
__pycache__/ __pycache__/
# Local recorder database (record.py) — dev-only, never committed or deployed. # Local recorder database (record.py) — dev-only, never committed or deployed.
data/ data/
# Secrets — API credentials must never be committed or deployed (server-side only).
openskycredentials.json
*credentials*.json
*.secret
.env