- 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
69 lines
890 B
Text
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
|