aboutsummaryrefslogtreecommitdiffhomepage
path: root/.gitignore
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-28 17:09:27 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-01-28 17:09:27 +0100
commite4788de51ecbf2773a043325965e10eb74b14e8f (patch)
treeca66ba084b27050ee336b93b82fbd55ac7f9fd3a /.gitignore
parent569f8d6851ea31b594fc5ccbcc11fe79dbdf2fa6 (diff)
downloadwallabag-e4788de51ecbf2773a043325965e10eb74b14e8f.tar.gz
wallabag-e4788de51ecbf2773a043325965e10eb74b14e8f.tar.zst
wallabag-e4788de51ecbf2773a043325965e10eb74b14e8f.zip
1st implementation of wallabag api, yeah
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore44
1 files changed, 29 insertions, 15 deletions
diff --git a/.gitignore b/.gitignore
index 0beb08c1..64831800 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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
19data/assets/* 29# PHPUnit
20data/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
37data/assets/*
38data/db/poche.sqlite \ No newline at end of file