You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
449 B
55 lines
449 B
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Build artifacts
|
|
bin/
|
|
dist/
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test files
|
|
*_test.go
|
|
test/
|
|
tests/
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
|
|
# Docker files
|
|
Dockerfile*
|
|
.dockerignore
|
|
|
|
# CI/CD
|
|
.github/
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
|
|
# Scripts (not needed in container)
|
|
scripts/
|
|
|
|
# Development files
|
|
.env
|
|
.env.local
|
|
.env.development |