34 lines
348 B
Plaintext
34 lines
348 B
Plaintext
# Versioning and metadata
|
|
.git
|
|
.gitignore
|
|
.dockerignore
|
|
|
|
# Build dependencies
|
|
node_modules
|
|
npm-debug.log
|
|
|
|
# Environment (contains sensitive data)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Files not required for production
|
|
README.md
|
|
Dockerfile
|
|
docker-compose.yml
|
|
*.log
|
|
.next
|
|
.vscode
|
|
.idea
|
|
*.md
|
|
*.log
|
|
*.lock
|
|
|
|
# Testing
|
|
coverage
|
|
.nyc_output
|
|
test
|
|
|
|
# Misc
|
|
.DS_Store
|