.gitignore 656 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Cache directories
  2. !app/cache/.htaccess
  3. /app/bootstrap.php.cache
  4. /app/cache/*
  5. !app/cache/.gitkeep
  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/translations/*
  17. app/Resources/views/*
  18. # Upload content
  19. app/upload/*
  20. # Logs and databases #
  21. *.log
  22. # IDE settings
  23. .idea
  24. .idea/*
  25. .idea/dictionaries/*
  26. .idea/cssxfire.xml
  27. *.orig
  28. nbproject/*
  29. # Plugins config files
  30. plugin/bbb/config.vm.php
  31. # Cron temp files
  32. main/cron/incoming/*
  33. # Stuff updated through composer
  34. composer.lock
  35. vendor
  36. web/assets/*
  37. web/assetic/*
  38. web/bundles/*
  39. web/css/*
  40. web/js/*