diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 44 |
1 files changed, 29 insertions, 15 deletions
@@ -1,24 +1,38 @@ | |||
1 | /app/SymfonyRequirements.php | 1 | # Cache and logs (Symfony2) |
2 | /app/bootstrap.php.cache | ||
3 | /app/check.php | ||
4 | /app/cache/* | 2 | /app/cache/* |
5 | /app/config/parameters.yml | ||
6 | /app/logs/* | 3 | /app/logs/* |
7 | !app/cache/.gitkeep | 4 | !app/cache/.gitkeep |
8 | !app/logs/.gitkeep | 5 | !app/logs/.gitkeep |
9 | .idea | 6 | |
10 | .DS_Store | 7 | # Cache and logs (Symfony3) |
11 | .vagrant | 8 | /var/cache/* |
9 | /var/logs/* | ||
10 | !var/cache/.gitkeep | ||
11 | !var/logs/.gitkeep | ||
12 | |||
13 | # Parameters | ||
14 | /app/config/parameters.yml | ||
15 | /app/config/parameters.ini | ||
16 | |||
17 | # Managed by Composer | ||
18 | /app/bootstrap.php.cache | ||
19 | /var/bootstrap.php.cache | ||
20 | /bin/* | ||
21 | !bin/console | ||
22 | !bin/symfony_requirements | ||
12 | /vendor/ | 23 | /vendor/ |
13 | 24 | ||
14 | /bin/ | 25 | # Assets and user uploads |
15 | !bin/install | 26 | /web/bundles/ |
16 | !bin/test | 27 | /web/uploads/ |
17 | !bin/symfony | ||
18 | 28 | ||
19 | data/assets/* | 29 | # PHPUnit |
20 | data/db/poche.sqlite | 30 | /app/phpunit.xml |
31 | /phpunit.xml | ||
21 | 32 | ||
22 | /web/.htaccess | 33 | # Composer PHAR |
34 | /composer.phar | ||
23 | 35 | ||
24 | !.gitignore \ No newline at end of file | 36 | # Data for wallabag |
37 | data/assets/* | ||
38 | data/db/poche.sqlite \ No newline at end of file | ||