50 lines
372 B
Plaintext
50 lines
372 B
Plaintext
# Node modules
|
|
node_modules
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Docker
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose.yml
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
|
|
# Tests
|
|
test
|
|
tests
|
|
*.test.js
|
|
*.spec.js
|
|
|
|
# Build
|
|
dist
|
|
build
|
|
*.map
|