38 lines
275 B
Plaintext
38 lines
275 B
Plaintext
|
|
# Git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
.github
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.vscode
|
||
|
|
.kiro
|
||
|
|
.idea
|
||
|
|
|
||
|
|
# Build artifacts
|
||
|
|
bin/
|
||
|
|
*.exe
|
||
|
|
*.dll
|
||
|
|
*.so
|
||
|
|
*.dylib
|
||
|
|
|
||
|
|
# Test files
|
||
|
|
*_test.go
|
||
|
|
*.test
|
||
|
|
*.out
|
||
|
|
|
||
|
|
# Environment files
|
||
|
|
.env
|
||
|
|
.env.local
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
*.md
|
||
|
|
docs/
|
||
|
|
|
||
|
|
# Misc
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|
||
|
|
brainstorm.md
|
||
|
|
nginx/
|
||
|
|
scripts/
|
||
|
|
Makefile
|