BlogPractical Laravel. Cleaning UpLaravel by default comes with lots of unneeded bagage, which is better to be cleaned out immediately after installation. 1. Remove All Unneeded Folders
2. Remove All Unnecessary Files
3. Include vendor folder in gitignoreBiggest mistake is not incuding the vendor folder. I want all the project dependencies under source control. It will take lots of extra space? Not really, space is either free or cheap these days. Add the following to the .gitignore to tell GIT to include the vendor folder !/vendor You will need to force GIT to unignore the folder git add - f vendor ConclusionLaravel tries to be one stop place for everyone. It tries to please everyone. This is why it comes with all you may think of preinstalled for you. Make your life easier, leave only what you need. If you write tests, then you leave PHP Unit. All the unnecessary bits throw away as early as possible, ideally after you install.
Loading blog_post_recommendations...
|