.gitignore 756 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Cache directories
  2. app/cache/*
  3. !app/cache/.htaccess
  4. # Chamilo configuration
  5. /app/config/parameters.yml
  6. /app/config/add_course.conf.php
  7. /app/config/auth.conf.php
  8. /app/config/course_info.conf.php
  9. /app/config/events.conf.php
  10. /app/config/mail.conf.php
  11. /app/config/portfolio.conf.php
  12. /app/config/profile.conf.php
  13. /app/config/configuration.php
  14. # Courses
  15. app/courses/*
  16. # Home
  17. app/home/*
  18. app/logs/*
  19. app/Resources/translations/*
  20. app/Resources/views/*
  21. # Upload content
  22. app/upload/*
  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. # Stuff updated through composer
  37. composer.lock
  38. vendor
  39. web/assets/*