-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
44 lines (36 loc) · 690 Bytes
/
.gitignore
File metadata and controls
44 lines (36 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Cache and logs (Symfony2)
api/app/cache/*
api/app/logs/*
!api/app/cache/.gitkeep
!api/app/logs/.gitkeep
# Cache and logs (Symfony3)
api/var/cache/*
api/var/logs/*
!api/var/cache/.gitkeep
!api/var/logs/.gitkeep
# Parameters
api/app/config/parameters.yml
api/app/config/parameters.ini
# Managed by Composer
api/app/bootstrap.php.cache
api/var/bootstrap.php.cache
api/bin/*
!api/bin/console
!api/bin/symfony_requirements
api/vendor/
# Assets and user uploads
api/web/bundles/
api/web/uploads/
api/web/js/
api/web/css/
# PHPUnit
api/app/phpunit.xml
api/phpunit.xml
# Build data
dist/
# Composer PHAR
api/composer.phar
#node_modules
node_modules/
#bower dependencies
bower_components/