Andy Crellin
02/21/2025, 10:14 AMReuben (Matatika)
02/21/2025, 10:53 AM# dev machine
meltano state list
meltano state get STATE_ID > STATE_ID.json
# live server
meltano state set --force STATE_ID "$(cat STATE_ID.json)"
anything I should make them particularly aware of?No, it's pretty straight forward:
git init -b main
git add .
git commit -m 'Initial commit'
git remote add origin <mailto:git@github.com|git@github.com>/ORG/REPO
git push --set-upstream origin main
Don't forget to remove sensitive credentials from your meltano.yml
before pushing to GitHub! Meltano will direct sensitive config to .env
with meltano config <plugin> set <setting> <value>
which is ignored by Git, so this is only really something to look out for if you are manually editing the file.Andy Crellin
02/21/2025, 4:48 PM