| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- # ---- Binaries / build outputs ----
- /vocat
- /vocat.exe
- /build/
- /release.py
- /build/vocat
- /build/vocat-linux-amd64
- /build/vocat-linux-amd64.exe
- *.exe
- *.dll
- *.so
- *.dylib
- # ---- Cookie / secret files (NEVER commit) ----
- vc.jar
- *.cookies
- *.session
- # ---- Frontend build products ----
- web/dist/
- web/build/
- web/node_modules/
- # ---- Go build ----
- *.test
- *.out
- # ---- Python (build/ helpers) ----
- build/__pycache__/
- __pycache__/
- *.pyc
- # Local-only helpers carry internal hostnames/credentials and must never be
- # committed. The whole build directory and the root release.py are ignored.
- build/*.py
- # ---- Docs / scratch ----
- *.md
- !README.md
- *.txt
- build/lists/
- # ---- Editor / IDE ----
- .vscode/
- .idea/
- # ---- OS junk ----
- .DS_Store
- Thumbs.db
- # ---- Claude Code / agent ----
- .claude/
|