I'm trying to implement environments so I can trac...
# troubleshooting
m
I'm trying to implement environments so I can track state using the
run
command. But when I try installing I'm getting this message:
Installing 0 plugins
We're setting it up similar to the docs but with only one environment.
Copy code
environments:
  - name: prod
    config:
      plugins:
        extractors:
          - name: tap-github
            config:
              organizations: [Meltano]
            select: ["*.*"]
        loaders:
          - name: target-snowflake
            config:
              dbname: prod
              warehouse: prod_wh
              batch_size_rows: 100000
    env:
      SOME_PROD_ONLY_SETTING: abc
Is there something we're missing. We're on
v1.105.0
This was us. We were misunderstanding the paradigm and trying to use
environments
like inheritance. Didn't realize that you need to define every plugin outside of the environment, which is why none of them were being installed.