diff --git a/.gitignore b/.gitignore index 07c3de3..0d2193c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,28 +1,57 @@ +**/.DS_Store .DS_Store -/node_modules -/public/hot -/public/storage -/storage/*.key -/vendor -/.idea -/.fleet -/.vscode -/.vagrant -Homestead.json -Homestead.yaml -npm-debug.log -yarn-error.log + +# Environment Variables (Secrets) .env -.phpunit.result.cache -.php_cs.cache -/documentation -/.phpunit.cache -/public/build -.env.backup -.env.production -auth.json -public/Connections/casadocconn.php -public/userportal/tools/mailer.php -public/userportal/persondocuments/ -public/userportal/mainphoto/ -public/userportal/homedocuments/ \ No newline at end of file +.env.* +!.env.example +server/.env +mobile/.env + +# Server (PHP/Laravel) +server/auth.json +_ide_helper.php +_ide_helper_models.php +.phpstorm.meta.php +server/.fleet +server/.idea +server/.php_cs.cache +server/.phpunit.cache +server/.phpunit.result.cache +server/.vagrant +server/.vscode +server/Homestead.json +server/Homestead.yaml +server/bootstrap/cache +server/documentation +server/node_modules +server/npm-debug.log +server/public/build +server/public/hot +server/public/storage +server/public/userportal +server/storage/*.key +server/storage/app/private +server/storage/debugbar +server/storage/debugbar/* +server/storage/framework/cache/data +server/storage/framework/sessions +server/storage/framework/testing +server/storage/framework/views +server/storage/logs +server/vendor + +# Mobile (React Native/Expo) +mobile/.expo +mobile/android +mobile/ios +mobile/node_modules +mobile/dist +mobile/web-build +mobile/npm-debug.log + +# Docker +docker-compose.override.yml + +# VS Code +.vscode/ \ No newline at end of file