54 lines
826 B
Plaintext
54 lines
826 B
Plaintext
# --- Laravel / PHP ---
|
|
/vendor/
|
|
/node_modules/
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Laravel runtime
|
|
/storage/*.key
|
|
/storage/app/*
|
|
!/storage/app/.gitkeep
|
|
/storage/framework/*
|
|
!/storage/framework/cache/.gitkeep
|
|
!/storage/framework/sessions/.gitkeep
|
|
!/storage/framework/views/.gitkeep
|
|
/storage/logs/*
|
|
!/storage/logs/.gitkeep
|
|
/bootstrap/cache/*
|
|
!/bootstrap/cache/.gitkeep
|
|
|
|
# --- Logs / caches ---
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# --- OS / Editor ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# JetBrains / PhpStorm / IntelliJ
|
|
.idea/
|
|
*.iml
|
|
|
|
# VSCode
|
|
.vscode/
|
|
|
|
# --- PHPUnit / Pest ---
|
|
.phpunit.result.cache
|
|
|
|
# --- Laravel Mix / Vite build outputs ---
|
|
/public/build
|
|
/public/hot
|
|
|
|
# --- Sensitive keys / certs ---
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.p12
|
|
|
|
# --- Local docker override files (if you use them) ---
|
|
docker-compose.override.yml
|