Hi all. I'm enjoying my Meltano experience so far ...
# troubleshooting
c
Hi all. I'm enjoying my Meltano experience so far (day 2 of hands-on learning). Everything is working great. Except for the Web UI. When I launch the UI with
meltano ui
, Gunicorn keeps presenting me with a blank HTML page asking me to compile and install the frontend code with
make bundle
. However, regardless of how many times I try and compile and install the frontend with
make bundle
, Gunicorn keeps showing the blank HTML page instead of the vue app. I installed the base python meltano app from a git master checkout (
pip install -e .
). I wonder if that has something to do with my problem.
e
I would choose to pip install off whatever is in pypi .. I am not following what you mean with git master checkout .. are you attempting to just test out the master branch? it might be likely that you'd need to choose a branch if you want to build from source
to confirm, you're not using the docker image? you're building/installing locally?
e
@christoph I'm not sure about
pip install -e
, but
poetry shell
plus
make bundle
in the cloned meltano repo should work.
c
Thanks @edgar_ramirez_mondragon I am new to
poetry
, I've only used
pip-compile-multi
before.
poetry
seems a full blown project management tool vs.
pip-compile-multi
being a dependency management tool. I'll play around with
poetry shell
I did forget to mention that I actually installed
pip install
-ed
meltano
into a virtualenv itself as well. For now, the Web UI is not super critical for my use case yet. @emcp No docker involved here. Yes, I am trying to run the latest development branch of meltano (assuming that
master
would be a good development branch to choose for testing)