-
Notifications
You must be signed in to change notification settings - Fork 82
/
.gitignore
113 lines (95 loc) · 2.04 KB
/
.gitignore
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
### Catroweb ###
.idea/
composer.phar
phpspec.yaml
phpunit.xml
*.local
phploc.phar
.jwt/
.sharedLibraries/
### Scripts ###
bin/
!bin/console
!bin/borg_restore_share.sh
!bin/checkCatroidRepositoryForNewBricks
!bin/x_perm.sh
!bin/x_reset.sh
### Sass ###
.sass-cache/
*.css.map
### Node ###
node_modules/
### public ###
public/**
!public/.well-known
!public/resources
!public/resources/**
!public/resources_test
!public/resources_test/**
!public/index.php
!public/index_test.php
!public/webp-on-demand.php
!public/robots.txt
### tests ###
tests/style-report/**
!tests/style-report/catroweb.xml
tests/TestReports/Behat/**
tests/TestReports/CoverageReports/**
tests/TestReports/TestScreenshots/**
tests/TestData/DataFixtures/GeneratedFixtures**
tests/TestData/Cache/**
### var ###
var/cache/**
var/log/**
### vendor ###
vendor/
### root ###
*.sh
###> symfony/framework-bundle ###
/.env.local
/.env.local.php
/.env.*.local
/config/secrets/prod/prod.decrypt.private.php
/public/bundles/
/var/
/vendor/
###< symfony/framework-bundle ###
###> behat/symfony2-extension ###
behat.yaml
###< behat/symfony2-extension ###
###> phpunit/phpunit ###
/phpunit.xml
.phpunit.result.cache
###< phpunit/phpunit ###
### docker ###
!/docker/app/startup.sh
!/docker/app/wait-for-it.sh
!/docker/app/set-permissions.sh
!/docker/app/execute-tests.sh
!/docker/app/prepare-for-deploy.sh
###> friendsofphp/php-cs-fixer ###
/.php-cs-fixer.php
/.php-cs-fixer.cache
###< friendsofphp/php-cs-fixer ###
###> lexik/jwt-authentication-bundle ###
/config/jwt/*.pem
###< lexik/jwt-authentication-bundle ###
###> symfony/webpack-encore-bundle ###
/node_modules/
/public/build/
npm-debug.log
yarn-error.log
###< symfony/webpack-encore-bundle ###
###> symfony/phpunit-bridge ###
.phpunit
###< symfony/phpunit-bridge ###
###> friends-of-behat/symfony-extension ###
/behat.yaml
###< friends-of-behat/symfony-extension ###
###> symfony/asset-mapper ###
/public/assets/
/assets/vendor/
###< symfony/asset-mapper ###
###> vincentlanglet/twig-cs-fixer ###
/.twig-cs-fixer.cache
###< vincentlanglet/twig-cs-fixer ###