.env, .env.dev, .env.prod, .env.test, and docker/.env contained real production secrets and were tracked in git despite the Symfony convention of keeping them local-only. Untrack them and ignore them going forward; docker/.env.dist stays as a template but now uses placeholder values instead of live credentials. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
41 lines
656 B
Plaintext
41 lines
656 B
Plaintext
|
|
###> symfony/framework-bundle ###
|
|
/.env
|
|
/.env.dev
|
|
/.env.prod
|
|
/.env.test
|
|
/.env.local
|
|
/.env.local.php
|
|
/.env.*.local
|
|
/config/secrets/prod/prod.decrypt.private.php
|
|
/public/bundles/
|
|
/var/
|
|
!/var/volumes/
|
|
/var/volumes/*
|
|
!/var/volumes/.gitignore
|
|
/vendor/
|
|
###< symfony/framework-bundle ###
|
|
|
|
###> phpunit/phpunit ###
|
|
/phpunit.xml
|
|
/.phpunit.cache/
|
|
###< phpunit/phpunit ###
|
|
|
|
###> symfony/asset-mapper ###
|
|
/public/assets/
|
|
/assets/vendor/
|
|
###< symfony/asset-mapper ###
|
|
|
|
###> symfony/webpack-encore-bundle ###
|
|
/node_modules/
|
|
/public/build/
|
|
npm-debug.log
|
|
yarn-error.log
|
|
###< symfony/webpack-encore-bundle ###
|
|
|
|
/.idea
|
|
|
|
###> docker env ###
|
|
/docker/.env
|
|
###< docker env ###
|