.gitignore 767 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. # Courses
  17. app/courses/*
  18. # Home
  19. app/home/*
  20. # Upload content
  21. app/upload/*
  22. # Logs and databases #
  23. *.log
  24. # IDE settings
  25. .idea
  26. .idea/*
  27. .idea/dictionaries/*
  28. .idea/cssxfire.xml
  29. *.orig
  30. nbproject/*
  31. # Plugins config files
  32. plugin/bbb/config.vm.php
  33. # Cron temp files
  34. main/cron/incoming/*
  35. plugin/vchamilo/templates/*
  36. # Stuff updated through composer - Remove just before release
  37. vendor
  38. web/assets/*