molecule-sdk-python/.gitignore
Hongming Wang 71efea125c chore: gitignore Python build artifacts and untrack accidentally-committed caches
The previous commit (87a4cfc) used `git add -A` and pulled in __pycache__/
and *.egg-info/ files because .gitignore didn't exclude them. Untrack
those, and extend .gitignore so future `git add -A` is safe.

This is a no-op for production code; only repo hygiene.
2026-04-30 13:09:38 -07:00

31 lines
418 B
Plaintext

# Credentials — never commit. Use .env.example as the template.
.env
.env.local
.env.*.local
.env.*
!.env.example
!.env.sample
# Private keys + certs
*.pem
*.key
*.crt
*.p12
*.pfx
# Secret directories
.secrets/
# Workspace auth tokens
.auth-token
.auth_token
# Python build artifacts — never commit; regenerated by interpreter / pip.
__pycache__/
*.py[cod]
*.egg-info/
.pytest_cache/
.ruff_cache/
build/
dist/