# Git files .git .gitignore .gitattributes # Docker files Dockerfile* docker-compose*.yml .dockerignore # Documentation README.md DEPLOYMENT_GUIDE.md *.md # Development files .env.example .env.local .env.testing # IDE files .vscode/ .idea/ *.swp *.swo # OS files .DS_Store Thumbs.db # Node modules and build files node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* # Laravel specific /vendor /storage/logs/* !/storage/logs/.gitkeep /storage/framework/cache/* !/storage/framework/cache/.gitkeep /storage/framework/sessions/* !/storage/framework/sessions/.gitkeep /storage/framework/views/* !/storage/framework/views/.gitkeep /bootstrap/cache/* !/bootstrap/cache/.gitkeep # Testing /tests phpunit.xml phpspec.yml # Build tools gulpfile.js package.json package-lock.json yarn.lock # Scripts start-local.sh rebuild.sh