96 lines
1.4 KiB
Plaintext
96 lines
1.4 KiB
Plaintext
# ===============================
|
|
# Dependencies
|
|
# ===============================
|
|
node_modules/
|
|
vendor/
|
|
|
|
# ===============================
|
|
# Build / Output
|
|
# ===============================
|
|
dist/
|
|
build/
|
|
target/
|
|
out/
|
|
|
|
# ===============================
|
|
# Environment files
|
|
# ===============================
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.production
|
|
.env.test
|
|
|
|
# ===============================
|
|
# Logs
|
|
# ===============================
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# ===============================
|
|
# Runtime / Temp files
|
|
# ===============================
|
|
tmp/
|
|
temp/
|
|
.cache/
|
|
|
|
# ===============================
|
|
# Python
|
|
# ===============================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
.venv/
|
|
venv/
|
|
|
|
# ===============================
|
|
# Java / JVM
|
|
# ===============================
|
|
*.class
|
|
*.jar
|
|
*.war
|
|
|
|
# ===============================
|
|
# OS generated files
|
|
# ===============================
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ===============================
|
|
# IDE / Editor
|
|
# ===============================
|
|
.idea/
|
|
.vscode/
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
|
|
# ===============================
|
|
# Uploads / Media (IMPORTANT)
|
|
# ===============================
|
|
uploads/
|
|
public/uploads/
|
|
storage/
|
|
media/
|
|
|
|
# ===============================
|
|
# Large media files
|
|
# ===============================
|
|
*.mp4
|
|
*.mov
|
|
*.avi
|
|
*.flv
|
|
*.wmv
|
|
*.tiff
|
|
*.psd
|
|
*.zip
|
|
*.rar
|
|
|
|
# ===============================
|
|
# Git
|
|
# ===============================
|
|
.git/
|