.gitignore 923 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ###> symfony/framework-bundle ###
  2. .env
  3. /public/bundles/
  4. /var/
  5. /vendor/
  6. ###< symfony/framework-bundle ###
  7. # Cache directories
  8. !var/cache/.gitkeep
  9. !var/logs/.gitkeep
  10. # Chamilo configuration
  11. /app/config/parameters.yml
  12. /app/config/add_course.conf.php
  13. /app/config/auth.conf.php
  14. /app/config/course_info.conf.php
  15. /app/config/events.conf.php
  16. /app/config/mail.conf.php
  17. /app/config/portfolio.conf.php
  18. /app/config/profile.conf.php
  19. /app/config/configuration.php
  20. /app/bootstrap.php.cache
  21. # Courses
  22. app/courses/*
  23. # Home
  24. app/home/*
  25. # Upload content
  26. app/upload/*
  27. # Logs and databases #
  28. *.log
  29. # Composer
  30. composer.lock
  31. #css
  32. node_modules/*
  33. # IDE settings
  34. .idea
  35. .idea/*
  36. .idea/dictionaries/*
  37. .idea/cssxfire.xml
  38. *.orig
  39. nbproject/*
  40. # Plugins config files
  41. plugin/bbb/config.vm.php
  42. # Cron temp files
  43. main/cron/incoming/*
  44. plugin/vchamilo/templates/*
  45. ###> symfony/web-server-bundle ###
  46. .web-server-pid
  47. ###< symfony/web-server-bundle ###