mirror of
https://github.com/Gouryella/drip.git
synced 2026-02-26 14:21:17 +00:00
69 lines
571 B
Plaintext
69 lines
571 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
LICENSE
|
|
|
|
# Build artifacts
|
|
bin/
|
|
dist/
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test files
|
|
*_test.go
|
|
**/*_test.go
|
|
coverage.*
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Certificates (will be generated in container)
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.csr
|
|
certs/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# Dependencies (will be downloaded in container)
|
|
vendor/
|
|
|
|
# CI/CD
|
|
.github/
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
|
|
# Development tools
|
|
Makefile
|
|
scripts/
|
|
|
|
# Examples
|
|
examples/
|