# These are some examples of commonly ignored file patterns. # You should customize this list as applicable to your project. # Learn more about .gitignore: # https://www.atlassian.com/git/tutorials/saving-changes/gitignore # Node artifact files node_modules/ dist/ # Compiled Java class files *.class # Compiled Python bytecode *.py[cod] # Log files *.log # Package files *.jar # Maven target/ dist/ # IDE and editor files .idea/ *.sublime-* *.swp .vscode/ # Unit test reports TEST*.xml # OS X .DS_Store .AppleDouble .LSOverride # Windows image file caches Thumbs.db ehthumbs.db Desktop.ini # Applications *.app *.exe *.war # Large media files *.mp4 *.tiff *.avi *.flv *.mov *.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 public/uploads/* !public/uploads/index.html #------------------------- # Composer #------------------------- !vendor/ composer.lock tests # Don't save phpunit under version control. phpunit phpunit*.xml /.phpunit.*.cache