| 1 | bin/ |
| 2 | |
| 3 | # Git |
| 4 | .git |
| 5 | .gitignore |
| 6 | |
| 7 | # CI/CD |
| 8 | .github/ |
| 9 | |
| 10 | # Documentation |
| 11 | docs/ |
| 12 | *.md |
| 13 | |
| 14 | # Local relay/tunnel state |
| 15 | .portal-certs/ |
| 16 | *identity.json |
| 17 | |
| 18 | # IDE |
| 19 | .vscode/ |
| 20 | .idea/ |
| 21 | *.swp |
| 22 | *.swo |
| 23 | |
| 24 | # OS |
| 25 | .DS_Store |
| 26 | Thumbs.db |
| 27 | |
| 28 | # Logs |
| 29 | *.log |
| 30 | |
| 31 | # Test coverage |
| 32 | coverage.out |
| 33 | coverage.html |
| 34 | |
| 35 | # Go |
| 36 | *.test |
| 37 | *.prof |
| 38 | vendor/ |
| 39 | |
| 40 | # Frontend deps/build artifacts |
| 41 | frontend/ |
| 42 | node_modules/ |
| 43 | **/node_modules/ |