X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.gitignore;h=9e793a54f1455b3ba4efdf2a2073ed6c879a4840;hb=c146f6940a176142084b4fc3c610d13aca60d90e;hp=bb776458802d84f78d67ae1b3fcce6b8d454d975;hpb=93fd4692f6eb753cae16358131c8049d84cfbb41;p=github%2Fwallabag%2Fwallabag.git diff --git a/.gitignore b/.gitignore index bb776458..9e793a54 100644 --- a/.gitignore +++ b/.gitignore @@ -1,22 +1,55 @@ -/app/SymfonyRequirements.php -/app/bootstrap.php.cache -/app/check.php -/app/cache/* +# Cache, logs & sessions +/var/* +!/var/cache +/var/cache/* +!var/cache/.gitkeep +!/var/logs +/var/logs/* +!var/logs/.gitkeep +!/var/sessions +/var/sessions/* +!var/sessions/.gitkeep +!var/SymfonyRequirements.php +/bin/* +!/bin/console +!/bin/symfony_requirements + +# Parameters /app/config/parameters.yml -/app/logs/* -!app/cache/.gitkeep -!app/logs/.gitkeep -.idea -.DS_Store -.vagrant + +# Managed by Composer /vendor/ -app/db/poche.sqlite -/bin/ -!bin/install -!bin/test -!bin/symfony +# Assets and user uploads +/web/bundles/ +/web/uploads/ + +# Build +/app/build +/build + +# Composer PHAR +/composer.phar + +# Data for wallabag +data/assets/* +data/db/wallabag*.sqlite + +# Docker container logs and data +docker/logs/ +docker/data/ + +# To avoid crazy stuff on some PR, we must manually FORCE ADD IT on each new release +composer.lock + +# assets stuff +/node_modules/ +!app/Resources/static/lib +app/Resources/static/lib/* +/bin +!/src/Wallabag/CoreBundle/Resources/public +/src/Wallabag/CoreBundle/Resources/public/* -/data/ +# PHPStorm +.idea/ -/web/.htaccess \ No newline at end of file