From 0aa1c25a482754e6a1df3994d67b7e3f5a25c478 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Biarda?= <1135380+michalbiarda@users.noreply.github.com> Date: Thu, 30 Jun 2022 11:47:17 +0200 Subject: [PATCH] #24 - README update --- README.md | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index f1f5e42..1bca767 100644 --- a/README.md +++ b/README.md @@ -87,11 +87,15 @@ To tag an export with an issue number (or whatever is desired): Connection information goes into a folder named `.driver`. The files that are recognized inside these folders are: -* `pipelines.yaml` +* `anonymize.yaml` * `commands.yaml` -* `engines.yaml` -* `connections.yaml` * `config.yaml` +* `connections.yaml` +* `engines.yaml` +* `environments.yaml` +* `pipelines.yaml` +* `reduce.yaml` +* `update_values.yaml` The filenames of these files serve no purpose other than a namespace. The delineation of the configuration happens inside each file. For example, in `pipelines.yaml`, there is a `pipelines` node as the root element. @@ -322,24 +326,19 @@ environments: ### Anonymizing Data -Tables can be anonyimized by creating `anonymize.yaml` in `.driver/`. The following type of anonymization entities are available in order to provide realistic data and types: +Tables can be anonymized by creating `anonymize.yaml` in `.driver/`. The following type of anonymization entities +are available in order to provide realistic data and types: * `email` * `company` * `firstname` * `lastname` -* `full_name` -* `general` * `phone` * `postcode` * `street` -* `address` * `city` -* `region_id` -* `region` -* `country_id` -* `phone` * `ip` +* `general` * `empty` **Example File** @@ -349,8 +348,6 @@ anonymize: quote: customer_email: type: email - customer_name: - type: full_name remote_ip: type: ip ```