- Add entrypoint.sh for automated app initialization (composer, npm, migrations, cache) - Update Dockerfile: run entrypoint as root, php-fpm workers still run as appuser - Update .gitignore: exclude storage/logs, storage/framework, bootstrap/cache, public/build - Remove generated/cached files from git tracking
19 lines
243 B
Plaintext
19 lines
243 B
Plaintext
/vendor/
|
|
/node_modules/
|
|
/.env
|
|
/storage/*.key
|
|
/storage/logs/
|
|
/storage/framework/
|
|
/bootstrap/cache/
|
|
/public/hot
|
|
/public/storage
|
|
/public/build/
|
|
/.phpunit.result.cache
|
|
/.idea/
|
|
/.vscode/
|
|
*.swp
|
|
*.swo
|
|
docker-compose.override.yml
|
|
db_data/
|
|
redis_data/
|