Skip to content

Commit 3bcb927

Browse files
IBX-6087: "Prepare installation for development" (#2124)
Co-authored-by: Magdalena Dziadosz <[email protected]>
1 parent 626210b commit 3bcb927

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

docs/getting_started/install_ibexa_dxp.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,27 @@ You can also use [Symfony CLI](https://symfony.com/download):
316316
symfony serve
317317
```
318318

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+
319340
## Prepare installation for production
320341

321342
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

Comments
 (0)