Files
APWorldTester/.gitignore
Skilly 14f2309688 Fix .gitignore swallowing the pipeline build package
The unanchored 'build/' pattern matched src/apworld_tester/pipeline/build/,
so the package was never committed and a fresh clone failed at import with
ModuleNotFoundError. Anchor build/ and dist/ to the repo root and add the
missing module files. Also ignore .venv/.
2026-09-06 15:53:18 +02:00

30 lines
557 B
Plaintext

__pycache__/
*.pyc
# Credentials. Never committed - see .env.example.
.env
# Nothing a run generates lives here any more: config.yaml's "data_root"
# points outside the checkout (the Archipelago clone, downloads, seeds
# and state.json all live there). These remain only to catch a config
# that points data_root back inside it.
state.json
scratch_state.json
pipeline.lock
downloads/
test_output/
archipelago_src/
playable_worlds.html
failed_apworlds.txt
# Claude file
CLAUDE.md
# Build output.
/build/
/dist/
*.egg-info/
# Virtual environment.
.venv/