Does someone have a template of how to get started...
# getting-started
z
Does someone have a template of how to get started with Meltano on GitHub Actions?
t
The fine folks at Brooklyn Data Co have made this https://github.com/brooklyn-data/meltano-on-github-actions đŸ˜„
z
Looked at that, didn't find it very convincing
t
How so? I can pull some folks into this thread if you have specific questions if that’s helpful.
z
I don't know a lot of python and didn't understand cookiecutter stuff. So that didn't work at first, started copy-pasting, but now 'meltano' the executable seems to be missing at some point.
a
If you're looking for a simple setup, I recommend taking a look at the new Jaffle Shop sample project: https://github.com/meltano/jaffle-shop-template
The workflow here is pretty simple: https://github.com/meltano/jaffle-shop-template/blob/main/.github/workflows/ci.yml And you really just need these lines:
Copy code
e2e-build:
    runs-on: ubuntu-22.04
    steps:
      - uses: actions/checkout@v3
      - uses: actions/setup-python@v4
        with:
          python-version: "3.10"
      - name: Install Meltano
        run: pipx install meltano
      - name: Install dbt and other tools
        run: meltano install
      - name: Extract and Load
        run: meltano run el
      - name: Transform
        run: meltano invoke dbt-duckdb:build
z
Thanks