Last active
July 12, 2024 00:18
-
-
Save WesleyGoncalves/9746bc2a257a1a3213e501fae9128898 to your computer and use it in GitHub Desktop.
.gitignore file
This file contains hidden or 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
# OS and IDEs | |
.DS_Store | |
Thumbs.db | |
UserInterfaceState.xcuserstate | |
$RECYCLE.BIN/ | |
*.code-workspace | |
*.sublime-project | |
*.sublime-workspace | |
/.idea | |
/.vscode | |
!.vscode/settings.json | |
!.vscode/tasks.json | |
!.vscode/launch.json | |
!.vscode/extensions.json | |
!.vscode/*.code-snippets | |
.history/ # Local History for Visual Studio Code | |
# Third-party | |
/node_modules | |
/vendor/ | |
/bower_components | |
.sass-cache/ | |
/.sourcemaps | |
.npm | |
npm-debug.log* | |
yarn-error.log | |
yarn-debug.log* | |
lerna-debug.log* | |
~ | |
*.sw[mnpcod] | |
.tmp | |
*.tmp | |
*.tmp.* | |
*.log | |
log.txt | |
# Config files | |
.env | |
.env.backup | |
# Laravel specific | |
/public/hot | |
/public/storage | |
/storage/*.key | |
/.vagrant | |
Homestead.json | |
Homestead.yaml | |
# PHP CS Fixer | |
.php_cs | |
# PHPUnit | |
!.phpunit.xml.dist | |
.phpunit.xml | |
.phpunit.result.cache | |
# Ionic | |
/.ionic | |
/.versions | |
/coverage | |
/dist | |
/build | |
/platforms | |
/plugins | |
/www |
For PHP, Laravel, and Ionic applications
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Download this file
curl -o ./.gitignore https://gist.githubusercontent.com/WesleyGoncalves/9746bc2a257a1a3213e501fae9128898/raw/.gitignore