49 lines
403 B
Plaintext
49 lines
403 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
*.md
|
|
README.md
|
|
LICENSE
|
|
CHANGELOG.md
|
|
|
|
# Development files
|
|
.vscode
|
|
.idea
|
|
*.log
|
|
*.logs
|
|
|
|
# Node
|
|
node_modules
|
|
npm-debug.log
|
|
yarn-error.log
|
|
.npm
|
|
.yarn
|
|
|
|
# Go
|
|
*.test
|
|
*.out
|
|
tmp/
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.local
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
.cache
|
|
|
|
# Deployment
|
|
deployments/
|
|
docker-compose.yml
|
|
|
|
# Tests
|
|
test-results/
|
|
playwright-report/
|
|
coverage/
|