fix(piha): capabilities — realny RAM/NVMe + gitignore build dirs
hosts/piha/capabilities.yaml: memory 4→8 GB, storage sd-card/32 GB → NVMe ~477 GB (/home 410 GB) .gitignore: packages/*/build/ i jobs/*/build/ (wyciekały po pip install -e) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
f234280b3a
commit
254a6808bc
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -16,6 +16,8 @@ __pycache__/
|
||||||
venv/
|
venv/
|
||||||
.venv/
|
.venv/
|
||||||
*.egg-info/
|
*.egg-info/
|
||||||
|
packages/*/build/
|
||||||
|
jobs/*/build/
|
||||||
|
|
||||||
# Tools
|
# Tools
|
||||||
.aider*
|
.aider*
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ capabilities:
|
||||||
cores: 4
|
cores: 4
|
||||||
threads: 4
|
threads: 4
|
||||||
memory:
|
memory:
|
||||||
total_gb: 4
|
total_gb: 8
|
||||||
acceleration:
|
acceleration:
|
||||||
type: none
|
type: none
|
||||||
|
|
||||||
|
|
@ -15,8 +15,9 @@ capabilities:
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
persistence: persistent
|
persistence: persistent
|
||||||
type: sd-card
|
type: nvme
|
||||||
capacity_gb: 32
|
capacity_gb: 477
|
||||||
|
home_gb: 410
|
||||||
|
|
||||||
networking:
|
networking:
|
||||||
reachability: tailscale-only
|
reachability: tailscale-only
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue