Last active
August 29, 2015 14:14
-
-
Save avosalmon/beb9b3bd8413ac592bea to your computer and use it in GitHub Desktop.
.gitignore for laravel api
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
/bootstrap/compiled.php | |
/app/storage/downloads | |
/app/storage/uploads | |
/app/storage/sessions/* | |
/app/storage/cache/* | |
/app/storage/logs | |
/app/config/database.php | |
/app/config/pubnub.php | |
vendor/.git | |
vendor/**/composer.lock | |
/node_modules | |
/ruby_vendor | |
/.bundle | |
composer.phar | |
.DS_Store | |
Thumbs.db | |
.tmp | |
npm-debug.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Laravel 5 .gitignore (v1)
vendor/.git
vendor/*/composer.lock
/storage/app
/storage/logs
/database/migrations/
!/database/migrations/2015_02_09_121400_create_session_table.php
.env
/node_modules
/ruby_vendor
/.bundle
composer.phar
.DS_Store
Thumbs.db
.tmp
npm-debug.log