mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-28 05:12:33 +00:00
43 lines
568 B
Plaintext
43 lines
568 B
Plaintext
# Build artifacts
|
|
target/
|
|
app/src-tauri/target/
|
|
|
|
# Node / frontend (not needed for core binary)
|
|
app/
|
|
node_modules/
|
|
dist/
|
|
.vite/
|
|
|
|
# IDE / editor
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Git
|
|
.git/
|
|
.gitmodules
|
|
|
|
# CI / docs
|
|
.github/
|
|
docs/
|
|
*.md
|
|
!Cargo.lock
|
|
|
|
# Environment / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Tests (not needed in build context)
|
|
tests/
|
|
scripts/
|
|
# Re-include the Docker entrypoint for the core image (Dockerfile COPYs it).
|
|
# The negation must come after the broad exclusion above to take effect.
|
|
!scripts/docker-entrypoint-core.sh
|