.gitignore 839 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # Cache directories
  2. app/cache/*
  3. !app/cache/.gitkeep
  4. app/logs/*
  5. !app/logs/.gitkeep
  6. # Chamilo configuration
  7. /app/config/parameters.yml
  8. /app/config/add_course.conf.php
  9. /app/config/auth.conf.php
  10. /app/config/course_info.conf.php
  11. /app/config/events.conf.php
  12. /app/config/mail.conf.php
  13. /app/config/portfolio.conf.php
  14. /app/config/profile.conf.php
  15. /app/config/configuration.php
  16. /app/bootstrap.php.cache
  17. # Courses
  18. app/courses/*
  19. # Home
  20. app/home/*
  21. # Upload content
  22. app/upload/*
  23. # Logs and databases #
  24. *.log
  25. # Composer
  26. composer.lock
  27. # IDE settings
  28. .idea
  29. .idea/*
  30. .idea/dictionaries/*
  31. .idea/cssxfire.xml
  32. *.orig
  33. nbproject/*
  34. # Plugins config files
  35. plugin/bbb/config.vm.php
  36. # Cron temp files
  37. main/cron/incoming/*
  38. plugin/vchamilo/templates/*
  39. # Stuff updated through composer - Remove just before release
  40. vendor
  41. # Assets
  42. web/assetic
  43. web/bundles