mirror of
https://github.com/makayabou/asg-server.git
synced 2026-05-02 17:43:36 +02:00
58 lines
666 B
Plaintext
58 lines
666 B
Plaintext
# Binaries and other executable files
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
bin/
|
|
dist/
|
|
|
|
# Test files
|
|
*_test.go
|
|
|
|
# Dependency directories (comment out if you're building your dependencies within Docker)
|
|
vendor/
|
|
|
|
# Git and version control
|
|
.git/
|
|
.gitignore
|
|
|
|
# Editor settings
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Operating system files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Configuration files
|
|
*.env
|
|
*.yml
|
|
*.yaml
|
|
config.json
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Other files not needed in docker
|
|
README.md
|
|
LICENSE
|
|
.Dockerfile.swp
|
|
.dockerignore
|
|
|
|
# Ignore the Go build directory
|
|
tmp/
|
|
|
|
# Ignore build and deployments directories
|
|
deployments/
|
|
build/
|
|
|
|
# Example requests files
|
|
*.http
|
|
|
|
# Ignore Go workspace
|
|
*.work
|