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
| stream_maps | False | None | Config object for stream maps capability. For more information check out [Stream Maps](https://sdk.meltano.com/en/latest/stream_maps.html). |
50
+
| stream_map_config | False | None | User-defined config values to be used within map expressions. |
51
+
| faker_config | False | None | Config for the [`Faker`](https://faker.readthedocs.io/en/master/) instance variable `fake` used within map expressions. Only applicable if the plugin specifies `faker` as an additional dependency (through the `singer-sdk``faker` extra or directly). |
52
+
| faker_config.seed | False | None | Value to seed the Faker generator for deterministic output: https://faker.readthedocs.io/en/master/#seeding-the-generator|
53
+
| faker_config.locale | False | None | One or more LCID locale strings to produce localized output for: https://faker.readthedocs.io/en/master/#localization|
54
+
| flattening_enabled | False | None | 'True' to enable schema flattening and automatically expand nested properties. |
55
+
| flattening_max_depth | False | None | The max depth to flatten schemas. |
-[ ]`Developer TODO:` As a first step, scan the entire project for the text "`TODO:`" and complete any recommended steps, deleting the "TODO" references once completed.
59
-
60
82
### Initialize your Development Environment
61
83
62
84
```bash
63
-
pipx install poetry
85
+
uv tool install poetry
64
86
poetry install
65
87
```
66
88
@@ -83,14 +105,13 @@ poetry run tap-socketdev --help
83
105
_**Note:** This tap will work in any Singer environment and does not require Meltano.
84
106
Examples here are for convenience and to streamline end-to-end orchestration scenarios._
85
107
86
-
Your project comes with a custom `meltano.yml` project file already created. Open the `meltano.yml` and follow any _"TODO"_ items listed in
87
-
the file.
108
+
Your project comes with a custom `meltano.yml` project file already created.
88
109
89
110
Next, install Meltano (if you haven't already) and any needed plugins:
0 commit comments