Skip to content

Commit b44095d

Browse files
committed
issue #194 - configuration basics documentation
1 parent df74d3e commit b44095d

File tree

10 files changed

+679
-357
lines changed

10 files changed

+679
-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
@@ -12,13 +12,13 @@ With the Symfony bundle, there is two ways to tell *DbToolsBundle* how it should
1212
2. you can declare it with a **YAML** file
1313

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

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

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

@@ -224,7 +224,7 @@ customer:
224224

225225
## Going further
226226

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

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

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

239239
::: 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)