hey everyone, i was trying to reference the meltan...
# getting-started
v
hey everyone, i was trying to reference the meltano-squared style setup for my local setup, so in my meltano.yaml im having it reference the environments folder where i have a dev.meltano.yml file. whenever i am trying to run meltano add or meltano invoke on a tap, it keeps giving me this error. Anybody run into this:
Copy code
Environment 'dev' was not found.
h
What does your meltano.yml environment specification look like? There is a
default_environment
key that I suspect says “dev” in your file, and then there is the
environments
key that lists all environments that you want to have. If “dev” is not in the
environments
key, you will get this error. An excerpt from that part in my project:
Copy code
version: 1
default_environment: dev
environments:
- name: dev
- name: prod
p
Also make sure you dont forget to add include_path to the root meltano.yml
v
hi @pat_nadolny, @Henning Holgersen, this is my meltano.yml
Copy code
version: 1
default_environment: dev
send_anonymous_usage_stats: false
project_id: 3f683747-4b22-40cd-8059-f486256992e1
include_paths:
- ./environments/*.meltano.yml
- ./extract/*.meltano.yml
- ./load/*.meltano.yml
- ./orchestrate/*.meltano.yml
- ./transform/*.meltano.yml
- ./utilities/*.meltano.yml