mad-lawsuit/.dockerignore
TheMaddax b7125cf2b7 Phase 4: Production deployment configuration
- Add Docker configuration (Dockerfile, docker-compose.yml)
- Add Nginx and Supervisor configuration
- Add deployment documentation (DEPLOYMENT.md)
- Complete Phase 3 data migration (63 entries, 63 docs, 28 subs)
- Add responsive PDF viewer component
- Fix date format to American (MM/DD/YYYY)
- Update typography to match v1.0
- Add admin dashboard with full CRUD operations
- Configure PostgreSQL with secure password
- Connect to caddy_network for reverse proxy
- Ready for production deployment
2025-12-17 19:12:32 -07:00

69 lines
890 B
Text

# Git
.git
.gitignore
.gitattributes
# Environment files (will be SCP'd separately)
.env
.env.*
!.env.example
# Node modules (will be installed in container)
node_modules/
npm-debug.log
yarn-error.log
# Composer vendor (will be installed in container)
vendor/
# Build artifacts
/public/build
/public/hot
/public/storage
# Storage (will be mounted as volume)
/storage/*.key
/storage/pail
/bootstrap/cache/*
# Database
/database/*.sqlite
/database/*.sqlite-journal
*.db
*.db-shm
*.db-wal
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Testing
/tests/
phpunit.xml
.phpunit.result.cache
# Documentation
README.md
PHASE3_COMPLETION_INSTRUCTIONS.md
DATA_COMPARISON_REPORT.md
cline_docs/
# Scripts
parse_sql_to_seeder.py
parse_sql_to_seeder_v2.py
update_seeder.py
update_seeder_v2.py
check_v1_data.js
seeder_data.txt
seeder_data_full.txt
# Temporary files
/tmp/
*.log