Hi All, I have structured my configurations as ``...
# meltano-plugin-development
s
Hi All, I have structured my configurations as
Copy code
include_paths:
- ./extract/config/*.meltano.yml
- ./environments/*.meltano.yml
- ./load/config/*.meltano.yml
When I run
meltano config tap-slack set --interactive
This is adding config data to extract config but if I do
meltano --environment=dev config tap-slack set --interactive
This is adding the config to dev yml in environments. I want config to be added to dev by default, I did set the property default-environment but no luck how can I do this.
1
Figured it out we can set an environment variable
MELTANO_ENVIRONMENT='development'
👍 1