| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- ## Ignore all
- *
- ## Expect
- !/app
- !/src
- !/bootstrap
- !/config
- !/database
- !/public
- !/resources
- !/routes
- !/tests
- !/lang
- !/storage/app
- !/storage/framework/cache
- !/storage/framework/sessions
- !/storage/framework/testing
- !/storage/framework/views
- !/storage/logs
- !artisan
- !composer.json
- !composer.lock
- !package.json
- !package-lock.json
- !.rr.yaml
- !.rr.local.yaml
- !.docker/php/*
- !.docker/php
- !.docker/php/wait-for-it.sh
- !.docker/nginx/conf.d/*
- !.docker/octane/*
- !Caddyfile
- !vite.config.js
- # Ignore unnecessary files inside allowed directories
- # This should go after the allowed directories
- **/*~
- **/*.log
- **/Thumbs.db
|