.gitignore 795 B

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