jam
09/28/2022, 4:05 PMmeltano.yml and some in a .env file. The configurations in the .env file don't seem to be getting picked up. I've read through the configuration section of the docs and I'm still unclear on how to get the .env fields injam
09/28/2022, 4:06 PMedgar_ramirez_mondragon
09/28/2022, 4:17 PMmeltano add), then you need to make sure settings are declared in meltano.yml so they’re picked up from .env . Eg:
# meltano.yml
plugins:
extractors:
- name: tap-pocket
namespace: tap_pocket
variant: edgarrmondragon
pip_url: git+<https://github.com/edgarrmondragon/tap-pocket.git>
executable: tap-pocket
capabilities:
- catalog
- discover
- state
settings:
- name: consumer_key
kind: password
- name: access_token
kind: password
- name: start_date
kind: integer
`.env`:
# .env
TAP_POCKET_CONSUMER_KEY=...
TAP_POCKET_ACCESS_TOKEN=...jam
09/28/2022, 4:17 PMedgar_ramirez_mondragon
09/28/2022, 4:18 PMjam
09/28/2022, 4:19 PMjam
09/28/2022, 4:19 PM