init
This commit is contained in:
+73
-14
@@ -1,17 +1,76 @@
|
||||
# Files
|
||||
.dockerignore
|
||||
.editorconfig
|
||||
# Git
|
||||
.git
|
||||
.gitignore
|
||||
.env.*
|
||||
Dockerfile
|
||||
Makefile
|
||||
LICENSE
|
||||
**/*.md
|
||||
**/*_test.go
|
||||
*.out
|
||||
.gitattributes
|
||||
|
||||
bin/
|
||||
# Folders
|
||||
.git/
|
||||
# Documentation
|
||||
*.md
|
||||
docs/
|
||||
|
||||
# IDE and editor files
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS generated files
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# Runtime data
|
||||
pids/
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# Coverage directory used by tools like istanbul
|
||||
coverage/
|
||||
*.cover
|
||||
|
||||
# Node modules (if any frontend assets)
|
||||
node_modules/
|
||||
|
||||
# Temporary files
|
||||
tmp/
|
||||
temp/
|
||||
|
||||
# Build artifacts
|
||||
server
|
||||
*.exe
|
||||
*.test
|
||||
*.prof
|
||||
|
||||
# Docker files
|
||||
Dockerfile
|
||||
.dockerignore
|
||||
|
||||
# CI/CD
|
||||
.github/
|
||||
build/
|
||||
.gitlab-ci.yml
|
||||
|
||||
# Environment files
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Test files
|
||||
*_test.go
|
||||
|
||||
# Migration files (if not needed in container)
|
||||
migrations/
|
||||
|
||||
# Development scripts
|
||||
scripts/dev/
|
||||
|
||||
# Cache directories
|
||||
.cache/
|
||||
|
||||
Reference in New Issue
Block a user