79 lines
740 B
Plaintext
79 lines
740 B
Plaintext
# macOS
|
|
.DS_Store
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Local configuration and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
settings.json
|
|
secrets.*
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
id_rsa*
|
|
id_ed25519*
|
|
|
|
# App output and caches
|
|
web/output/
|
|
PyWebview/web/output/
|
|
.hf_cache/
|
|
*.log
|
|
build/
|
|
dist/
|
|
|
|
# Generated media and 3D assets
|
|
*.png
|
|
*.jpg
|
|
*.jpeg
|
|
*.webp
|
|
*.glb
|
|
*.gltf
|
|
*.blend
|
|
*.hdr
|
|
*.exr
|
|
*.mp4
|
|
*.mov
|
|
*.zip
|
|
*.tar.gz
|
|
!icon.png
|
|
!icon.icns
|
|
|
|
# Local model weights
|
|
*.safetensors
|
|
*.ckpt
|
|
*.pt
|
|
*.pth
|
|
*.onnx
|
|
*.bin
|
|
|
|
# Node and lockfile leftovers
|
|
node_modules/
|
|
package-lock.json
|
|
npmCargo.lock
|
|
*.lock
|
|
|
|
# Native build artifacts
|
|
*.o
|
|
*.dylib
|
|
*.a
|
|
*.so
|
|
*.exe
|
|
debug
|