gitignore : ps

This commit is contained in:
gandhimathi 2023-08-18 11:24:28 +00:00
parent 2bead569d8
commit 1994e59b26

52
.gitignore vendored
View File

@ -23,17 +23,24 @@ dist/
target/ target/
dist/ dist/
# JetBrains IDE # IDE and editor files
.idea/ .idea/
*.sublime-*
*.swp
.vscode/
# Unit test reports # Unit test reports
TEST*.xml TEST*.xml
# Generated by MacOS # OS X
.DS_Store .DS_Store
.AppleDouble
.LSOverride
# Generated by Windows # Windows image file caches
Thumbs.db Thumbs.db
ehthumbs.db
Desktop.ini
# Applications # Applications
*.app *.app
@ -48,3 +55,42 @@ Thumbs.db
*.mov *.mov
*.wmv *.wmv
#-------------------------
# Environment Files
#-------------------------
# These should never be under version control,
# as it poses a security risk.
.env
.vagrant
#-------------------------
# Temporary Files
#-------------------------
writable/cache/*
!writable/cache/index.html
writable/logs/*
!writable/logs/index.html
writable/session/*
!writable/session/index.html
writable/uploads/*
!writable/uploads/index.html
writable/debugbar/*
!writable/debugbar/.gitkeep
writable/**/*.db
writable/**/*.sqlite
php_errors.log
#-------------------------
# Composer
#-------------------------
vendor/
composer.lock
tests