The repo moved to /var/mnt/data/projects/settled-reach (flat layout, no more /main worktree subdir). Drop the stale autoMemoryDirectory override (pointed at the old /home path; revert to the native per-slug memory store) and gitignore .worktrees/, which now holds per-machine git worktrees under the repo root. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
95 lines
1.9 KiB
Plaintext
95 lines
1.9 KiB
Plaintext
# Secrets
|
|
.env
|
|
|
|
# Local-only settings DB and WAL/SHM sidecars of tracked DBs
|
|
server/settings.db
|
|
server/settings.db-shm
|
|
server/settings.db-wal
|
|
server/data/systems.db-shm
|
|
server/data/systems.db-wal
|
|
|
|
# Build and cache
|
|
.cache/
|
|
.tmp/
|
|
server/target/
|
|
server/sr-voice/target/
|
|
server/models/
|
|
tooling/content-converter/target/
|
|
tooling/econ-sim/target/
|
|
tooling/line-previewer/target/
|
|
tooling/test-client/target/
|
|
|
|
# Godot client
|
|
client/.godot/
|
|
client/export/
|
|
client/reports/
|
|
client/**/*.import
|
|
client/**/*.uid
|
|
|
|
# Renderer (separate Godot project for sprite pipeline)
|
|
renderer/.godot/
|
|
renderer/**/*.import
|
|
renderer/**/*.uid
|
|
renderer/output/*.png
|
|
|
|
# Spikes (Godot cache + import artifacts)
|
|
spikes/**/.godot/
|
|
spikes/**/*.import
|
|
spikes/**/*.uid
|
|
spikes/**/*.npy
|
|
spikes/**/*.npz
|
|
|
|
# Planet generator intermediates
|
|
*.tmp.npz
|
|
|
|
# Generated terrain grids (large, regenerated from pipeline)
|
|
wiki/**/bodies/**/terrain.npz
|
|
|
|
# Asset downloads (vendor archives, not game content)
|
|
docs/assets/downloads/
|
|
|
|
# Reference repos for investigation
|
|
vendor/
|
|
|
|
# Frame0 ID mapping files (ephemeral, per-machine)
|
|
*.idmap.json
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
.obsidian/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Generated economics pipeline artifacts (re-created by make economy-db)
|
|
wiki/economics/corporations/generated_brands.toml
|
|
wiki/economics/corporations/generated_corporations.toml
|
|
|
|
# Git worktrees (per-machine, created under the repo root)
|
|
.worktrees/
|
|
|
|
# Claude Code internals (plans, session transcripts)
|
|
# Note: .claude/agents/, .claude/skills/, and .claude/settings.json ARE tracked
|
|
.claude/plans/
|
|
.claude/projects/
|
|
.claude/agent-memory/
|
|
.tmp/
|
|
|
|
# Local agent tooling caches (per-machine, not shared)
|
|
.clide/
|
|
|
|
# pql: ignore the rebuildable local databases (index + planning DB + WAL/SHM
|
|
# sidecars), but TRACK .pql/config.yaml and .pql/changelog/ — the changelog is
|
|
# pql's durable, git-versioned planning state (LWW, idempotent replay).
|
|
.pql/*.db
|
|
.pql/*.db-*
|