.gitignore 835 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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/config/parameters.yml
  12. /app/config/add_course.conf.php
  13. /app/config/auth.conf.php
  14. /app/config/configuration.php
  15. /app/config/course_info.conf.php
  16. /app/config/events.conf.php
  17. /app/config/mail.conf.php
  18. /app/config/portfolio.conf.php
  19. /app/config/profile.conf.php
  20. # Home
  21. app/home/*
  22. app/logs/*
  23. app/Resources/translations/*
  24. app/Resources/views/*
  25. # Upload content
  26. app/upload/*
  27. # Logs and databases #
  28. *.log
  29. # IDE settings
  30. .idea
  31. .idea/*
  32. .idea/dictionaries/*
  33. .idea/cssxfire.xml
  34. *.orig
  35. nbproject/*
  36. # Plugins config files
  37. plugin/bbb/config.vm.php
  38. # Cron temp files
  39. main/cron/incoming/*
  40. # Stuff updated through composer
  41. composer.lock
  42. vendor
  43. web/assets/*