Skip to content

Commit 4e7e7af

Browse files
committed
issue #194 - configuration basics documentation
1 parent 7de47e1 commit 4e7e7af

File tree

10 files changed

+686
-357
lines changed

10 files changed

+686
-357
lines changed

docs/.vitepress/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default defineConfig({
8585
items: [
8686
{ text: 'Backup & Restore', link: '/backup_restore' },
8787
{ text: 'Statistics', link: '/stats' },
88-
{ text: 'Bundle configuration', link: '/configuration' },
88+
{ text: 'Configuration basics', link: '/configuration/basics' },
8989
{ text: 'Configuration reference', link: '/configuration/reference' },
9090
]
9191
},

docs/content/anonymization/essentials.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ With the Symfony bundle, there is two ways to tell *DbToolsBundle* how it should
1313
2. you can declare it with a **YAML** file
1414

1515
::: tip
16-
The *DbToolsBundle* does not only work with Doctrine Entities to anonymize data. You can use it with
16+
*DbToolsBundle* does not only work with Doctrine Entities to anonymize data. You can use it with
1717
*any* database, all you need is a DBAL connection.
1818

1919
In such case, the [YAML configuration](../configuration#anonymization) is the only available option.
2020
:::
2121

22-
If Doctrine ORM is enabled, the *DbToolsBundle* will automatically look for attributes on your entities.
22+
If Doctrine ORM is enabled, *DbToolsBundle* will automatically look for attributes on your entities.
2323
If you want to use YAML configuration, look at the [Bundle Configuration
2424
section](../configuration#anonymization) to see how to configure it.
2525

@@ -225,7 +225,7 @@ customer:
225225

226226
## Going further
227227

228-
The DbToolsBundle provides a bunch of *Anonymizers* that should cover most of your needs. You can find a
228+
*DbToolsBundle* provides a bunch of *Anonymizers* that should cover most of your needs. You can find a
229229
complete description of each one of them in the next section.
230230

231231
You can also add *Anonymizers* from [community packs](./packs). For example, to add the `pack-fr-fr` run:
@@ -234,7 +234,7 @@ You can also add *Anonymizers* from [community packs](./packs). For example, to
234234
composer require db-tools-bundle/pack-fr-fr
235235
```
236236

237-
If you can't find what you need from core anonymizers and in available packs, the *DbToolsBundle* allows
237+
If you can't find what you need from core anonymizers and in available packs, *DbToolsBundle* allows
238238
you to [create your own *Custom Anonymizers*](./custom-anonymizers).
239239

240240
::: tip

docs/content/backup_restore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ php bin/console db-tools:restore --ignore-default-options
307307

308308
## Storage
309309

310-
As mentioned earlier on this page, the *DbToolsBundle* can list existing backup files
310+
As mentioned earlier on this page, *DbToolsBundle* can list existing backup files
311311
when you want to restore a previous one with the restore command.
312312

313313
All backups are stored in a directory. By default this directory is <span class="standalone">`./var/db_tools` (relative to the yaml config file)</span><span class="symfony">`%kernel.project_dir%/var/db_tools`</span>

docs/content/configuration.md

Lines changed: 0 additions & 329 deletions
This file was deleted.

0 commit comments

Comments
 (0)