- .gitignore: ignore /extracted/ (regenerable game data) and /tmp/ (scratch) - git rm --cached the 38 extracted/ files: untracked but left on disk, not deleted - master_scrape.py: add GetExpedition=7 to ACTIONS (was missing; pulls ExpeditionDto.Trampler) - docs: mark master-server /connect blocker cleared 2026-06-16 (server back up); server-side upsert hash validation remains untested (live re-test not yet run)
51 lines
805 B
Plaintext
51 lines
805 B
Plaintext
# Symlink to game data / old claude stuff
|
|
/Walkers
|
|
Walkers/
|
|
|
|
# Symlink to the game's Unity asset bundles (StreamingAssets/aa)
|
|
/bundles
|
|
|
|
# Snapshots
|
|
/snapshots/
|
|
snapshots/
|
|
|
|
# Huge IL2CPP / GameAssembly dumps (regenerable, ~460MB)
|
|
/il2cpp/
|
|
|
|
# Ghidra install + project + decompiled output (huge, regenerable)
|
|
/ghidra/
|
|
|
|
# Local HTML render of the wiki (regenerable via wikigen/render_wiki.py)
|
|
/wiki_site/
|
|
|
|
# RE method-index cache (regenerable from il2cpp/dump.cs)
|
|
/reverse/_method_index.pkl
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
.venv/
|
|
env/
|
|
ENV/
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.ipynb_checkpoints/
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
/reverse/.secrets/
|
|
|
|
# Extracted game data + scratch output (regenerable; kept locally, not tracked)
|
|
/extracted/
|
|
/tmp/
|