File tree 3 files changed +9
-8
lines changed
3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ SYMFONYVERSION=3
57
57
BASEHOST=application.dev
58
58
MYSQL_ROOT_PASSWORD=toor
59
59
APPLICATION=../application
60
- DEVELOPMENT=noprofile
60
+ DEVELOPMENT=1
61
61
WINDOW_MANAGER=tmux
62
62
~~~
63
63
@@ -97,12 +97,13 @@ A relative or absolute path to your application code.
97
97
98
98
### DEVELOPMENT
99
99
100
- Set the development flag. Default we use noprofile which will allow us to use
101
- xdebug. When ` DEVELOPMENT=1 ` you also have tideways enabled which gives you
102
- profiling output of you application.
100
+ There is the ` DEVELOPMENT ` environment variable wich will enable xdebug,
101
+ composer and enable timestamp checking in opcache.
103
102
104
- To visualize your profiling output see
105
- [ docker-compose-xhgui] ( https://github.com/BlackIkeEagle/docker-compose-xhgui )
103
+ When ` DEVELOPMENT ` is enabled xdebug should work out of the box. When you have
104
+ issues - like while running docker for mac - you can set the extra environment
105
+ variable ` XDEBUG_CONFIG ` with your hosts ip in it so xdebug can properly
106
+ connect back.
106
107
107
108
### WINDOW_MANAGER
108
109
Set the default window manager when running the environment.
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ services:
26
26
environment :
27
27
- C_UID=${C_UID:-1000}
28
28
- C_GID=${G_UID:-1000}
29
- - DEVELOPMENT=${DEVELOPMENT:-noprofile }
29
+ - DEVELOPMENT=${DEVELOPMENT:-1 }
30
30
volumes :
31
31
- ${APPLICATION:-../application}:/phpapp
32
32
links :
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ services:
23
23
environment :
24
24
- C_UID=${C_UID:-1000}
25
25
- C_GID=${G_UID:-1000}
26
- - DEVELOPMENT=${DEVELOPMENT:-noprofile }
26
+ - DEVELOPMENT=${DEVELOPMENT:-1 }
27
27
volumes :
28
28
- ${APPLICATION:-../application}:/phpapp
29
29
links :
You can’t perform that action at this time.
0 commit comments