41 lines
338 B
Plaintext
41 lines
338 B
Plaintext
# Ignore all files and directories by default
|
|
|
|
-
|
|
|
|
# Except for the following:
|
|
|
|
!.dockerignore
|
|
!.gitignore
|
|
!.env.example
|
|
!.git/
|
|
!.env
|
|
!.vscode/
|
|
!.idea/
|
|
|
|
# Node.js specific
|
|
|
|
node_modules/
|
|
|
|
# Build artifacts
|
|
|
|
dist/
|
|
build/
|
|
|
|
# Logs
|
|
|
|
logs/
|
|
\*.log
|
|
|
|
# Environment files
|
|
|
|
.env\*
|
|
|
|
# Cache files
|
|
|
|
\*.cache
|
|
|
|
# OS generated files
|
|
|
|
.DS_Store
|
|
Thumbs.db
|