68 lines
862 B
Text
68 lines
862 B
Text
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Environment files
|
|
.env.backup
|
|
.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
|