Last active
May 28, 2024 10:44
-
-
Save ceilidhboy/54f09b154893441233932bec7e696cb0 to your computer and use it in GitHub Desktop.
.gitignore file for Laravel projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# PHP and Laravel stuff | |
/node_modules | |
public/hot | |
public/storage | |
public/build | |
public/css/filament | |
public/js/filament | |
/public/public | |
/storage/*.key | |
/vendor | |
public/vendor/ | |
nova | |
upload | |
.env | |
.env.backup | |
.phpunit.result.cache | |
.phpunit.cache/ | |
docker-compose.override.yml | |
Homestead.json | |
Homestead.yaml | |
npm-debug.log | |
yarn-error.log | |
/.idea | |
/.vscode | |
*.log | |
*.jar | |
debugbar/ | |
phpinfo.* | |
phpunit.xml.bak | |
# Unit test reports | |
TEST*.xml | |
# Generated by MacOS | |
.DS_Store | |
# Generated by Windows | |
Thumbs.db | |
# Applications | |
*.app | |
*.exe | |
*.war | |
# Large media files | |
*.mp4 | |
*.tiff | |
*.avi | |
*.flv | |
*.mov | |
*.wmv | |
# SQLite databases | |
*.sqlite | |
# Generated by Pest testing | |
Test Results*.html | |
.htaccess | |
.user.ini | |
error_log | |
.well-known/ | |
*.zip | |
composer.lock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment