Is there anything I need to do differently when ru...
# random
i
Is there anything I need to do differently when running
meltano install
once I've segregated my meltano config in different environments? I didn't have any environments defined before and now that I've put the config into dev/stg/prod environments in my
meltano.yml
, I'm getting a
Installing 0 plugins...
message when running meltano install on my CLI and none of my plugins are "known to meltano". Do I need to pass an --environment flag or something? I've got my default env set and I set the env var as well in case. Here's what my yml looks like:
Copy code
version: 1
default_environment: dev
project_id: abcdefg
environments:
  - name: dev
    config:
      jobs:
      - name: job
        tasks:
        - tap-something target-something
      plugins:
        extractors:
        loaders:
...
1
I think I was screwing up. I assumed I need all my config in each env not just env specific config
👍 1
e
@Ian OLeary so you got
meltano install
working again?
i
Yes I had the wrong understanding with how the env configs worked. All working now - thanks!
🙌 1