First of all, thanks for this awesome repository to test Temporal.
That said, I'm trying to run the hello-world sample via VSCode devcontainer.
Describe the bug
Not sure if this is a bug but I cannot view the workflow from the temporal UI. First of all, there's probably a typo in the docker-compose.yml where it says depends_on: temporal here:
thank you for sharing! dont have time to debug this right now so hopefully somebody else can look into fixing this.. will pick it up again when GitHub Codespaces goes GA.
What are you really trying to do?
First of all, thanks for this awesome repository to test Temporal. That said, I'm trying to run the
hello-world
sample via VSCode devcontainer.Describe the bug
Not sure if this is a bug but I cannot view the workflow from the temporal UI. First of all, there's probably a typo in the docker-compose.yml where it says
depends_on: temporal
here:https://github.com/temporalio/samples-typescript/blob/9052df328b52a7d73289c9dc12e42cd2082d1a27/.devcontainer/docker-compose.yml#L50
I assume this should be
temporalite
. After editing this, the devcontainer spins up and I can access the temporal UI.Unfortuantely, a
500 Internal Server Error
keeps on showing up in the UI.If I look at the logs for the
temporalite
container, I see some errors happening as follows:If I start a worker with
npm start
in thehello-world
sample, it seems to spin up and have a state ofRUNNING
. Here is the output:And if I run a workflow, it seems to be registered correctly, too:
So I'm thinking it's only the UI that has the problem? I couldn't come up with anything after this so have decided to post an issue.
Minimal Reproduction
hello-world
samplenpm start
to start the workernpm run workflow
to register the workflowEnvironment/Versions
temporalite:test
container written in the docker-composehttps://github.com/temporalio/samples-typescript/blob/9052df328b52a7d73289c9dc12e42cd2082d1a27/.devcontainer/docker-compose.yml#L40
Additional context
If there's anything else I can share, please let me know :)