.gitignore 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # Cache directories
  2. var/cache/*
  3. !var/cache/.gitkeep
  4. var/log/*
  5. !var/log/.gitkeep
  6. /node_modules/
  7. # Chamilo configuration
  8. /app/config/parameters.yml
  9. /app/config/add_course.conf.php
  10. /app/config/auth.conf.php
  11. /app/config/course_info.conf.php
  12. /app/config/events.conf.php
  13. /app/config/mail.conf.php
  14. /app/config/profile.conf.php
  15. /app/config/configuration.php
  16. # Courses
  17. var/courses/*
  18. !var/courses/.gitkeep
  19. # Home
  20. app/home/*
  21. components/*
  22. # Upload content
  23. var/upload/*
  24. !var/upload/.gitkeep
  25. # Logs and databases #
  26. *.log
  27. # IDE settings
  28. .idea
  29. .idea/*
  30. .idea/dictionaries/*
  31. .idea/cssxfire.xml
  32. *.orig
  33. nbproject/*
  34. # Plugins config files
  35. plugin/bbb/config.vm.php
  36. # Cron temp files
  37. main/cron/incoming/*
  38. plugin/vchamilo/templates/*
  39. # Stuff updated through composer - Remove just before release
  40. vendor
  41. web/assets/*
  42. ###> symfony/framework-bundle ###
  43. .env
  44. /public/bundles/
  45. /var/
  46. /vendor/
  47. ###< symfony/framework-bundle ###
  48. ###> friendsofphp/php-cs-fixer ###
  49. .php_cs.cache
  50. ###< friendsofphp/php-cs-fixer ###
  51. ###> symfony/phpunit-bridge ###
  52. .phpunit
  53. /phpunit.xml
  54. ###< symfony/phpunit-bridge ###
  55. ###> symfony/web-server-bundle ###
  56. .web-server-pid
  57. ###< symfony/web-server-bundle ###
  58. ###> symfony/webpack-encore-pack ###
  59. /node_modules/
  60. /public/build/
  61. ###< symfony/webpack-encore-pack ###