.gitignore 770 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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/views/*
  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/*