mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
chore: improve root .gitignore
- add more AI files - add swap files - ignore public/vendor as it is re-generated on composer install - rename .env.development to .env.local
This commit is contained in:
parent
b0295ceab2
commit
62070253a8
2 changed files with 14 additions and 6 deletions
20
.gitignore
vendored
20
.gitignore
vendored
|
|
@ -2,7 +2,7 @@
|
|||
.env.*
|
||||
!.env.testing
|
||||
!.env.example
|
||||
!.env.development.example
|
||||
!.env.local.example
|
||||
!.env.production.example
|
||||
|
||||
.bash_history
|
||||
|
|
@ -13,18 +13,25 @@
|
|||
node_modules
|
||||
/vendor
|
||||
|
||||
*.log
|
||||
|
||||
.ai
|
||||
CLAUDE.md
|
||||
/.cursor
|
||||
/.fleet
|
||||
/.idea
|
||||
/.junie
|
||||
/.nova
|
||||
/.vscode
|
||||
/.windsurfrules
|
||||
/.zed
|
||||
|
||||
*.log
|
||||
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
*.swo
|
||||
*.swp
|
||||
|
||||
*.sqlite*
|
||||
|
||||
/auth.json
|
||||
|
|
@ -35,9 +42,10 @@ Thumbs.db
|
|||
Homestead.json
|
||||
Homestead.yaml
|
||||
|
||||
/public/build/
|
||||
/public/hot/
|
||||
/public/storage/
|
||||
/public/build
|
||||
/public/hot
|
||||
/public/storage
|
||||
/public/vendor
|
||||
|
||||
/storage/**
|
||||
!/storage/app
|
||||
|
|
|
|||
Loading…
Reference in a new issue