54 lines
429 B
Plaintext
54 lines
429 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# CI/CD
|
|
.github
|
|
.gitlab-ci.yml
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
|
|
# Maven
|
|
**/target/
|
|
.mvn/
|
|
mvnw
|
|
mvnw.cmd
|
|
|
|
# Node
|
|
**/node_modules/
|
|
**/dist/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# Documentation
|
|
*.md
|
|
README*
|
|
LICENSE
|
|
docs/
|
|
|
|
# Scripts
|
|
bin/
|
|
*.bat
|
|
*.sh
|
|
|
|
# Logs
|
|
*.log
|
|
**/logs/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.DS_Store
|
|
Thumbs.db |