Files
minio-webui/.gitignore
T
paul d99a299bf5 fix: Resolve backend permission errors for temp and logs directories
- Fix MinIO service temp directory path (was going to /temp instead of /app/temp)
- Add TEMP_DIR environment variable support
- Make audit logger optional in development mode to avoid permission issues
- Ensure log directory exists before creating loggers
- Update docker-entrypoint.sh to create temp directory
- Create backend/temp directory with .gitkeep
- Update .gitignore to exclude temp files but keep directory structure

This fixes the EACCES permission errors that were causing the backend to restart.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-23 14:22:59 +02:00

100 lines
1.0 KiB
Plaintext

# Dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Environment files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Production builds
backend/dist/
frontend/build/
frontend/dist/
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# OS files
.DS_Store
Thumbs.db
# IDE files
.idea/
.vscode/
*.swp
*.swo
*~
# Test coverage
coverage/
.nyc_output/
# Temporary files
temp/
tmp/
*.tmp
backend/temp/*
!backend/temp/.gitkeep
# MinIO configuration
.mc/
# SSL certificates (for local development)
*.pem
*.key
*.crt
# Docker volumes
docker/volumes/
# PM2
.pm2/
# Backup files
*.backup
*.bak
# Cache directories
.cache/
.parcel-cache/
# Generated files
*.pid
*.seed
*.pid.lock
# TypeScript
*.tsbuildinfo
# Next.js (if used later)
.next/
out/
# Gatsby (if used later)
.cache/
# public/ - commented out as we need frontend/public for React
# Mac specific
.AppleDouble
.LSOverride
# Linux specific
*~
# Windows specific
Thumbs.db
ehthumbs.db
Desktop.ini
# Redis dump
dump.rdb