30 lines
No EOL
301 B
Text
30 lines
No EOL
301 B
Text
# Ignore build artifacts
|
|
bin/
|
|
release/
|
|
downloads/
|
|
temp/
|
|
logs/
|
|
|
|
# Ignore version control
|
|
.git/
|
|
.gitignore
|
|
|
|
# Ignore documentation
|
|
*.md
|
|
LICENSE
|
|
|
|
# Ignore IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Ignore OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Ignore development files
|
|
Makefile
|
|
docker-compose.yml
|
|
.dockerignore |