.gitignore 626 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Cache directories
  2. /app/bootstrap.php.cache
  3. /app/cache/*
  4. !app/cache/.gitkeep
  5. !app/cache/.htaccess
  6. /app/config/parameters.yml
  7. /app/logs/*
  8. !app/logs/.gitkeep
  9. /app/phpunit.xml
  10. /bin/
  11. /app/courses/*
  12. !app/courses/.gitkeep
  13. # Home
  14. app/home/*
  15. app/logs/*
  16. app/Resources/views/*
  17. # Upload content
  18. app/upload/*
  19. # Logs and databases #
  20. *.log
  21. # IDE settings
  22. .idea
  23. .idea/*
  24. .idea/dictionaries/*
  25. .idea/cssxfire.xml
  26. *.orig
  27. nbproject/*
  28. # Plugins config files
  29. plugin/bbb/config.vm.php
  30. # Cron temp files
  31. main/cron/incoming/*
  32. # Stuff updated through composer
  33. composer.lock
  34. vendor
  35. web/assets/*
  36. web/assetic/*
  37. web/bundles/*
  38. web/css/*
  39. web/js/*