123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- # Chamilo 1.x
- app
- courses
- web/assets/*
- # Cache directories
- var/cache/*
- !var/cache/.gitkeep
- var/log/*
- !var/log/.gitkeep
- /node_modules/
- # Chamilo configuration
- /config/configuration.php
- /main/inc/conf/configuration.php
- # Courses
- var/courses/*
- !var/courses/.gitkeep
- # Home
- components/*
- # Upload content
- var/upload/*
- !var/upload/.gitkeep
- # Logs and databases #
- *.log
- # IDE settings
- .idea
- .idea/*
- .idea/dictionaries/*
- .idea/cssxfire.xml
- *.orig
- nbproject/*
- # Plugins config files
- plugin/bbb/config.vm.php
- # Cron temp files
- main/cron/incoming/*
- plugin/vchamilo/templates/*
- # Stuff updated through composer - Remove just before release
- vendor
- ###> symfony/framework-bundle ###
- .env
- /public/bundles/
- /var/
- /vendor
- ###< symfony/framework-bundle ###
- ###> friendsofphp/php-cs-fixer ###
- .php_cs.cache
- ###< friendsofphp/php-cs-fixer ###
- ###> symfony/phpunit-bridge ###
- .phpunit
- /phpunit.xml
- ###< symfony/phpunit-bridge ###
- ###> symfony/web-server-bundle ###
- .web-server-pid
- ###< symfony/web-server-bundle ###
- ###> symfony/webpack-encore-pack ###
- /node_modules/
- /public/build/
- ###< symfony/webpack-encore-pack ###
|