Finally got a live demo up using streamlit cloud W...
# plugins-general
a
Finally got a live demo up using streamlit cloud With meltano, the workbench is as simple as meltano invoke dbt-osmosis:workbench See what it feels like to compile dbt jinja + test it as fast as you type! https://z3z1ma-dbt-osmosis-srcdbt-osmosisapp-4y67qs.streamlitapp.com/
t
Getting an error when I try to load it 🧐
a
Can you give it a refresh by chance
Just had to reboot the app because I added a dep that wasn't picked up by streamlit cloud so I rebooted it (like a couple mins ago) and it's good again.
t
I’m in!
this is really really cool!! cc @pat_nadolny @aaronsteers
a
Thanks! dbt cloud doesn't even have compile as you type functionality. My personal view is the developer experience with dbt-osmosis plus VS Code is far better than dbt cloud I was thinking on recording a loom or something to share how I personally use it.
Another data point for consideration is that a query like this in the screenshot takes ~3.5 seconds on average to compile in dbt cloud Paste the same thing into dbt osmosis is roughly ~ .25 seconds
Copy code
{%- for i in range(1, 10) %}
      select {{ i }} as my_column
  
      {%- if not loop.last %}
          union all 
      {% endif %}
  
  {%- endfor %}
Here is the Jinja in case you felt like pasting it into the demo šŸ˜‰