# ============================================================ # Veza/Talas — Global .gitignore # Stack: Go, Rust, TypeScript/React, Docker, Scripts # ============================================================ ### Node / JS node_modules/ dist/ build/ .next/ pnpm-lock.yaml npm-debug.log* yarn-debug.log* yarn-error.log* ### Rust target/ Cargo.lock *.rs.bk ### Go *.exe *.exe~ *.dll *.so *.dylib ### Python (scripts/tools) __pycache__/ *.pyc ### Logs / Dumps *.log logs/ *.pid *.seed *.gz ### Database dumps — SECURITY(REM-034): Never commit database artifacts **/veza_back_api_db/ *.sql.dump *.pgdump ### Editors / IDE .vscode/ .idea/ .cursor/ *.swp *.swo ### System trash .DS_Store Thumbs.db ### Temp / Cache tmp/ temp/ .cache/ .turbo/ coverage/ coverage-final.json typecheck*.txt output*.txt design_system*.html *_design_system*.html MODULE.bazel.lock ### Test artifacts *.test *.coverage *.out test-results/ playwright-report/ ### Build / Bundles *.wasm *.bundle.js *.map apps/web/dist_verification/ **/dist_verification/ ### Environment / Secrets (NE JAMAIS COMMIT) .env .env.* !.env.example !.env.staging.example **/.env **/.env.local **/.env.* !.env.example !.env.staging.example veza-backend-api/.env veza-chat-server/.env veza-stream-server/.env apps/web/.env.local .secrets/ ### Docker docker-data/ *.tar # HAProxy SSL certs (never commit private keys) docker/haproxy/certs/*.key docker/haproxy/certs/*.pem # JWT RSA keys (v0.9.1 RS256 migration — NEVER commit) jwt-private.pem jwt-public.pem veza-backend-api/main veza-backend-api/api veza-backend-api/veza-api veza-backend-api/migrate_tool chat_exports/ # Debug/test screenshots (root level) screenshot-*.png sidebar-*.png player-*.png login-*.png search-*.png track-*.png test-*.png dashboard-*.png report-*.html # MCP config (local) .mcp.json # Environment / Secrets — config templates only, never commit real .env config/incus/env/*.env !config/incus/env/env.example # Playwright /test-results/ /playwright-report/ tests/e2e/test-results/ tests/e2e/VEZA_AUDIT_REPORT.html tests/e2e/VEZA_AUDIT_REPORT.json apps/web/e2e-results.json e2e-results.json /blob-report/ /playwright/.cache/ /playwright/.auth/ *storybook.log storybook-static # v0.941: Swagger docs.go generated by CI (swag init) veza-backend-api/docs/docs.go