File tree Expand file tree Collapse file tree 4 files changed +13
-18
lines changed Expand file tree Collapse file tree 4 files changed +13
-18
lines changed Original file line number Diff line number Diff line change 1
1
** /* .log
2
2
** /* .md
3
3
** /* .php~
4
+ ** /* .dist.php
5
+ ** /* .dist
6
+ ** /* .cache
4
7
** /._ *
5
8
** /.dockerignore
6
9
** /.DS_Store
14
17
** /docker-compose.yml
15
18
** /Dockerfile
16
19
** /Thumbs.db
20
+ .github /
21
+ docs /
22
+ public /bundles /
23
+ tests /
24
+ var /
25
+ vendor /
17
26
.editorconfig
18
27
.env. * .local
19
28
.env.local
20
29
.env.local.php
21
- .php_cs.cache
22
- bin /*
23
- ! bin /console
24
- docker /db /data /
25
- helm /
26
- public /bundles /
27
- var /
28
- vendor /
30
+ .env.test
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ charset = utf-8
15
15
trim_trailing_whitespace = true
16
16
insert_final_newline = true
17
17
18
- [* .{js,html} ]
18
+ [* .{js,html,ts,tsx } ]
19
19
indent_style = space
20
20
indent_size = 2
21
21
@@ -43,10 +43,6 @@ indent_style = space
43
43
indent_size = 4
44
44
trim_trailing_whitespace = false
45
45
46
- [api/helm/api/** .yaml ]
47
- indent_style = space
48
- indent_size = 2
49
-
50
46
[.github/workflows/* .yml ]
51
47
indent_style = space
52
48
indent_size = 2
Original file line number Diff line number Diff line change @@ -8,9 +8,8 @@ services:
8
8
volumes :
9
9
- ./:/srv/app
10
10
- ./docker/php/conf.d/app.dev.ini:/usr/local/etc/php/conf.d/app.dev.ini:ro
11
- # If you develop on Mac or Windows you can remove the var/ and vendor/ directories
12
- # from the bind-mount for better performance by enabling the next 2 lines:
13
- # - /srv/app/var
11
+ # If you develop on Mac or Windows you can remove the vendor/ directory
12
+ # from the bind-mount for better performance by enabling the next line:
14
13
# - /srv/app/vendor
15
14
environment :
16
15
# See https://xdebug.org/docs/all_settings#mode
Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ if [ "${1#-}" != "$1" ]; then
7
7
fi
8
8
9
9
if [ " $1 " = ' php-fpm' ] || [ " $1 " = ' php' ] || [ " $1 " = ' bin/console' ]; then
10
- mkdir -p var/cache var/log
11
-
12
10
# Install the project the first time PHP is started
13
11
# After the installation, the following block can be deleted
14
12
if [ ! -f composer.json ]; then
You can’t perform that action at this time.
0 commit comments