.gitignore 506 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Cache directories
  2. app/cache/*
  3. !app/cache/.htaccess
  4. # Chamilo configuration
  5. app/config/
  6. # Courses
  7. app/courses/*
  8. # Home
  9. app/home/*
  10. app/logs/*
  11. app/Resources/translations/*
  12. app/Resources/views/*
  13. # Upload content
  14. app/upload/*
  15. # Logs and databases #
  16. *.log
  17. # IDE settings
  18. .idea
  19. .idea/*
  20. .idea/dictionaries/*
  21. .idea/cssxfire.xml
  22. *.orig
  23. nbproject/*
  24. # Plugins config files
  25. plugin/bbb/config.vm.php
  26. # Cron temp files
  27. main/cron/incoming/*
  28. # Stuff updated through composer
  29. composer.lock
  30. vendor
  31. web/assets/*