You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting_started/install_ibexa_dxp.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -316,6 +316,27 @@ You can also use [Symfony CLI](https://symfony.com/download):
316
316
symfony serve
317
317
```
318
318
319
+
## Prepare installation for development
320
+
321
+
Consider adding the Symfony DebugBundle which fixes memory outage when dumping objects with circular references.
322
+
The DebugBundle contains the [VarDumper]([[= symfony_doc =]]/components/var_dumper.html) and [its Twig integration]([[= symfony_doc =]]/components/var_dumper.html#debugbundle-and-twig-integration).
323
+
324
+
```bash
325
+
composer require --dev symfony/debug-bundle
326
+
```
327
+
328
+
For detailed information about request treatment, you can eventually install [Symfony Profiler]([[= symfony_doc =]]/profiler.html):
329
+
330
+
```bash
331
+
composer require --dev symfony/profiler-pack
332
+
```
333
+
334
+
To get both features in one go use:
335
+
336
+
```bash
337
+
composer require --dev symfony/debug-pack
338
+
```
339
+
319
340
## Prepare installation for production
320
341
321
342
To use [[= product_name =]] with an HTTP server, you need to [set up directory permissions](#set-up-permissions) and [prepare a virtual host](#set-up-virtual-host).
0 commit comments