docs: correct "gitignored" wording — repo has no .gitignore

README + CLAUDE.md previously claimed Hunyuan3D-2/ and docker/outputs/
were "gitignored". The repo has no .gitignore at all; those paths are
just untracked. Use "untracked" / "not committed" wording instead so
the operator contract (clone upstream, don't add) is clear without
implying a gitignore safety net.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Travis Herbranson 2026-05-20 07:21:55 -04:00
parent 8c88adc4b1
commit 117f06c055
2 changed files with 6 additions and 5 deletions

View File

@ -19,7 +19,7 @@ hunyuan3d-sunnie/
docker/
Dockerfile # community-derived (per repo issues #125, #122)
compose.yml # GPU compose; pins the mini-turbo model + flashvdm
outputs/ # generated .glb meshes land here (gitignored)
outputs/ # generated .glb meshes land here (untracked)
README.md
CLAUDE.md
```
@ -76,7 +76,7 @@ the re-download.
`./docker/outputs/` is bind-mounted into the container at
`/workspace/outputs/`. The Gradio app drops `.glb` files there with
PBR textures embedded — ready for Blender import → Mixamo rigging.
The dir is gitignored; nothing in it is meant to be committed.
The dir is untracked; nothing in it is meant to be committed.
## Don't-touch zones

View File

@ -15,7 +15,8 @@ Mixamo.
```bash
# Clone the upstream model repo into this directory (not a submodule —
# the Dockerfile COPYs it via the build context). This dir is gitignored.
# the Dockerfile COPYs it via the build context). Operator-managed; not
# committed.
git clone https://github.com/Tencent-Hunyuan/Hunyuan3D-2.git
# Build and run
@ -30,11 +31,11 @@ docker compose up
```
hunyuan3d-sunnie/
Hunyuan3D-2/ # cloned upstream — gitignored, operator-managed
Hunyuan3D-2/ # cloned upstream — operator-managed, not committed
docker/
Dockerfile # custom build, CUDA 12.4, community-derived
compose.yml # GPU compose; pins mini-turbo + flashvdm + low_vram
outputs/ # generated .glb meshes land here (gitignored)
outputs/ # generated .glb meshes land here (not committed)
```
## Notes