37 lines
911 B
Plaintext
37 lines
911 B
Plaintext
# Previous attempts and drafts
|
|
fails/
|
|
def/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.venv/
|
|
venv/
|
|
|
|
# Secrets. There was no rule here, which is how a real API key ended up tracked
|
|
# in station/tools/tester/.env. Templates still ship.
|
|
.env
|
|
!.env.example
|
|
|
|
# Node
|
|
node_modules/
|
|
|
|
# Built library bundles (regenerate with `pnpm build` in the package).
|
|
# The dist is what a container boots; it is an artifact, not source.
|
|
dist/
|
|
|
|
# Generated runnable instance (entirely gitignored - regenerate with build.py)
|
|
gen/
|
|
|
|
# Specs and sheets uploaded through shuntgen's UI. Inputs someone dropped in a
|
|
# browser, not source — and often a client's real data.
|
|
soleprint/station/tools/shuntgen/uploads/
|
|
|
|
# Room configurations (separate repo - contains credentials and room-specific data)
|
|
# Keep cfg/standalone/ and cfg/sample/ as templates, ignore actual rooms
|
|
cfg/amar/
|
|
cfg/dlt/
|
|
# Add new rooms here as they are created
|
|
# cfg/<room>/
|