/ .gitignore
.gitignore
1 # Python 2 __pycache__/ 3 *.py[cod] 4 *.so 5 .venv/ 6 venv/ 7 .env 8 9 # Nix 10 result 11 result-* 12 13 # Editor / OS 14 .vscode/ 15 .idea/ 16 *.swp 17 *.swo 18 *~ 19 .DS_Store 20 Thumbs.db 21 *:Zone.Identifier 22 23 # Logs and build output 24 *.log 25 26 # Legacy directory — removed in S00-01 27 haven/ 28 29 # Secrets (SOPS-encrypted files ARE safe to commit) 30 # Do NOT commit unencrypted .env files 31 secrets/ 32 33 # Local Claude session state 34 .claude/ 35 .stfolder/ 36 37 # Node/Playwright test artifacts 38 package.json 39 package-lock.json 40 node_modules/ 41 scripts/browser-test/.playwright-cli/ 42 scripts/browser-test/**/*.png 43 scripts/browser-test/**/*.yml 44 scripts/browser-test/node_modules/ 45 scripts/browser-test/package*.json 46 ontology/