mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-14 13:01:09 +00:00
6546aca4a3
We initially ignored the `composer.lock` because it generated a lock of rebase on PR when someone updated it and the master updated it too. Now we have less contributions (sadly) so I think we won't run against that problem. Also, it'll solve issue about people cloning the master and got angry because composer eat all the available memory to determine packages to install. It'll also be much easier to make release. Scrutinizer & Travis will be faster too.
56 lines
895 B
Text
56 lines
895 B
Text
# 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
|
|
.php_cs.cache
|
|
|
|
# Parameters
|
|
/app/config/parameters.yml
|
|
|
|
# Managed by Composer
|
|
/vendor/
|
|
|
|
# Assets and user uploads
|
|
web/uploads/
|
|
/web/bundles/*
|
|
!/web/bundles/.gitkeep
|
|
/web/assets/images/*
|
|
!web/assets/images/.gitkeep
|
|
/web/wallassets/*.dev.js
|
|
|
|
# Build
|
|
/app/build
|
|
/build
|
|
|
|
# Composer PHAR
|
|
/composer.phar
|
|
|
|
# Data for wallabag
|
|
data/db/wallabag*.sqlite
|
|
|
|
# Docker container logs and data
|
|
docker/logs/
|
|
docker/data/
|
|
|
|
# assets stuff
|
|
node_modules/
|
|
bin
|
|
app/Resources/build/
|
|
!/src/Wallabag/CoreBundle/Resources/public
|
|
/src/Wallabag/CoreBundle/Resources/public/*
|
|
|
|
# Test-generated files
|
|
admin-export.json
|
|
specialexport.json
|
|
/data/site-credentials-secret-key.txt
|