.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. # Chamilo 1.x
  2. app
  3. courses
  4. web/assets/*
  5. # Cache directories
  6. var/cache/*
  7. !var/cache/.gitkeep
  8. var/log/*
  9. !var/log/.gitkeep
  10. /node_modules/
  11. # Chamilo configuration
  12. /config/configuration.php
  13. /main/inc/conf/configuration.php
  14. # Courses
  15. var/courses/*
  16. !var/courses/.gitkeep
  17. # Home
  18. components/*
  19. # Upload content
  20. var/upload/*
  21. !var/upload/.gitkeep
  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. composer.lock
  39. symfony.lock
  40. ###> symfony/framework-bundle ###
  41. /.env.local
  42. /.env.local.php
  43. /.env.*.local
  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-bundle ###
  59. /node_modules/
  60. /public/build/
  61. npm-debug.log
  62. yarn-error.log
  63. ###< symfony/webpack-encore-bundle ###