39 lines
451 B
Plaintext
39 lines
451 B
Plaintext
# Version control
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation that doesn't belong in the image
|
|
README.md
|
|
LICENSE
|
|
CHANGELOG.md
|
|
docs/
|
|
|
|
# Editor / OS junk
|
|
.vscode
|
|
.idea
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Local env files (use .env at the compose level, not inside the image)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Build artefacts that shouldn't be shipped
|
|
node_modules
|
|
dist
|
|
build
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# CI
|
|
.github/
|
|
|
|
# Test outputs
|
|
coverage/
|
|
.nyc_output/
|