X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.gitignore;h=3b2dc462f6a12f63173bda028a5851e7ed5051eb;hb=aafb3321b75976bd4614d5c033df175853f0cbb0;hp=2abed7edb59fe5fb8a62f70d06ceff7fbb4ba428;hpb=747c6698b668ce645c0a771ddc1a0ef748a58177;p=github%2Fwallabag%2Fwallabag.git diff --git a/.gitignore b/.gitignore index 2abed7ed..3b2dc462 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,51 @@ -assets/* -cache/* -vendor -composer.phar -db/poche.sqlite -inc/poche/config.inc.php \ No newline at end of file +# 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 + +# Managed by Composer +/vendor/ + +# 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/* \ No newline at end of file