The uploads/ directory is bind-mounted at runtime via docker-compose and should not be copied into the Docker build context. This was slowing down builds and including potentially large media files in the context.
28 lines
306 B
Plaintext
28 lines
306 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
.env.example
|
|
.editorconfig
|
|
|
|
# IDE
|
|
.DS_Store
|
|
.vscode
|
|
.idea
|
|
|
|
# Build artifacts (don't copy into container)
|
|
tmp/
|
|
logs/
|
|
*.log
|
|
|
|
# Dependencies (install fresh in container)
|
|
node_modules/
|
|
|
|
# Environment
|
|
.env
|
|
|
|
# Media uploads (bind-mounted at runtime)
|
|
uploads/ |