33 lines
316 B
Plaintext
33 lines
316 B
Plaintext
|
|
# Git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
README.md
|
||
|
|
|
||
|
|
# Development files
|
||
|
|
.vscode
|
||
|
|
.idea
|
||
|
|
|
||
|
|
# Build artifacts (will be copied from CI)
|
||
|
|
*.exe
|
||
|
|
*.exe~
|
||
|
|
*.dll
|
||
|
|
*.so
|
||
|
|
*.dylib
|
||
|
|
|
||
|
|
# Test files
|
||
|
|
*_test.go
|
||
|
|
*.test
|
||
|
|
|
||
|
|
# Temporary files
|
||
|
|
*.tmp
|
||
|
|
*.log
|
||
|
|
|
||
|
|
# Gitea workflows (not needed in image)
|
||
|
|
.gitea
|
||
|
|
.github
|
||
|
|
|
||
|
|
# Scripts (not needed in image)
|
||
|
|
*.sh
|