mogens_nielsen
01/06/2023, 8:41 AM.meltano
shouldn't be shared, but then the other machine is not able to do meltano run [...]
How do you share a Meltano project?Sven Balnojan
01/06/2023, 8:53 AMSven Balnojan
01/06/2023, 8:55 AMmogens_nielsen
01/06/2023, 9:04 AMSven Balnojan
01/06/2023, 9:05 AMpat_nadolny
01/06/2023, 12:43 PMmogens_nielsen
01/06/2023, 12:49 PMmeltano install
without the .meltano
folder. And that folder should not be in version control. And you can't do a meltano init
inside a folder that isn't empty.
It seems to me that I should have only meltano.yml
in version control and anyone who wants to recreate it would do meltano init
and then move meltano.yml
to the newly initialized project.
And then, do meltano install
Does that seem right?thomas_briggs
01/06/2023, 2:03 PMmeltano install
it'll create the .meltano folder and install all the plugins, etc.pat_nadolny
01/06/2023, 2:15 PMmeltano install
without the .meltano
, that command basically takes what youve configured in your meltano.yml and installs it into your .meltano
folder so its usable. meltano init
should only be used for the first time you create a project, it scaffolds your directory and gives you your first meltano.yml. Like Sven shared earlier you can check out https://github.com/meltano/squared/tree/main/data as an example of our internal production meltano project, the full scaffold is version controlledmogens_nielsen
01/06/2023, 2:15 PM