What to include in gitignore for a Laravel and PHPStorm project?

前端 未结 4 880
挽巷
挽巷 2021-02-07 09:42

I\'m going to be collaborating on a project using Laravel and PHPStorm. After doing some research and working on a few projects, here is the .gitignore I\'ve come u

4条回答
  •  时光说笑
    2021-02-07 10:03

    Laravel automatically create it with installation:

    /node_modules
    /public/hot
    /public/storage
    /storage/*.key
    /vendor
    .env
    .env.backup
    .phpunit.result.cache
    Homestead.json
    Homestead.yaml
    npm-debug.log
    yarn-error.log
    

提交回复
热议问题