68 lines
938 B
Plaintext
68 lines
938 B
Plaintext
# Ignore vendor directory
|
|
/vendor/
|
|
|
|
# Ignore node_modules
|
|
/node_modules/
|
|
|
|
# Ignore build and dist directories
|
|
/public/build/
|
|
/public/storage/
|
|
/storage/*.key
|
|
|
|
# Ignore environment files
|
|
.env
|
|
.env.backup
|
|
.env.production
|
|
|
|
# Ignore IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Ignore logs
|
|
/storage/logs/*.log
|
|
/storage/framework/cache/data/
|
|
/storage/framework/sessions/
|
|
/storage/framework/views/
|
|
|
|
# Ignore database files (if using SQLite)
|
|
*.sqlite
|
|
*.sqlite3
|
|
database/database.sqlite
|
|
|
|
# Ignore PHP Storm
|
|
/.idea
|
|
/.vscode
|
|
|
|
# Ignore Mac system files
|
|
.DS_Store
|
|
|
|
# Ignore npm debug logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Ignore Composer cache
|
|
/.composer/
|
|
|
|
# Ignore PHP CS Fixer cache
|
|
.php_cs.cache
|
|
.php-cs-fixer.cache
|
|
|
|
# Ignore testing database
|
|
testing.sqlite
|
|
|
|
# Ignore hot reload file
|
|
/public/hot
|
|
|
|
# Ignore mix manifest
|
|
/public/mix-manifest.json
|
|
|
|
# Ignore coverage reports
|
|
/coverage/
|
|
/.nyc_output/
|
|
|
|
# Ignore temporary files
|
|
*.tmp
|
|
*.temp |