mirror of
https://github.com/myronblair/kino
synced 2026-06-30 17:50:29 -05:00
80 lines
852 B
Plaintext
80 lines
852 B
Plaintext
# --- Secrets / env ---
|
|
# (Keep these locally, NEVER commit)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
backend/.env
|
|
frontend/.env
|
|
*.pem
|
|
*.key
|
|
|
|
# --- Media / user uploads ---
|
|
backend/media/
|
|
media/
|
|
*.mp4
|
|
*.mkv
|
|
*.mov
|
|
*.avi
|
|
*.webm
|
|
*.m4v
|
|
|
|
# --- Python ---
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg
|
|
*.egg-info/
|
|
.eggs/
|
|
build/
|
|
dist/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# --- Node / Frontend ---
|
|
node_modules/
|
|
frontend/node_modules/
|
|
frontend/build/
|
|
frontend/.cache/
|
|
.npm
|
|
.yarn-cache/
|
|
yarn-error.log
|
|
npm-debug.log*
|
|
|
|
# --- IDE / OS ---
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# --- Logs ---
|
|
logs/
|
|
*.log
|
|
|
|
# --- Test reports / agent runtime ---
|
|
test_reports/
|
|
.emergent/
|
|
tests/__pycache__/
|
|
|
|
# --- Misc ---
|
|
*.bak
|
|
*.tmp
|
|
.cache/
|
|
-e
|
|
# Environment and credential files
|
|
.env
|
|
.env.*
|
|
*.env
|
|
credentials.json
|
|
*.pem
|
|
*.key
|
|
.credentials
|