You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! First off- I love this project and I've been testing it across a vast array of hardware-- i'm mostly frontend usually and not super familiar with lower level backend systems and pup has been amazing at letting me keep my prototypes organized.
I'm currently running into an issue on a raspberry pi 4 that i've not experienced on any other hardware-- i know it works on rasperry pis, as I have other passing test units.
I'm using pup to start a mix of node and deno services, for example, my edge client i start with
the problem I'm facing seems to be in between pup and deno.
The error in the output is
[ERROR] [plan98-start-client]:stderr] error: Module not found "file:///home/tychi/.plan98/task"
I can run deno task start-client on device and get my web server on port 8000, but when pup seems run the deno task start-client command, it seems to look in the .plan98 folder (where i have the plan98 repository cloned) for a non-existent task folder instead of running the full start-client command from deno task.
My hunch is there's some command translation issue under the hood, but I'm not able to reproduce this bug on any other device.
The text was updated successfully, but these errors were encountered:
update: i am able to reproduce, i removed my deno.lock file on the same repository from above on an m2 macbook running asahi linux.
reproduction:
1: git clone [email protected]:tylerchilds/plan98.git
2: deno task start
3: you'll see that all the microservices hit the Module not found task error. the one from above was for a simple example.
I create a more condensed reproduction repository. That has
mod.js: javascript file that logs 'hello world' to the console when executed deno.json: file with a lookup table for task commands, specifically start to run mod.js with the deno javascript runtime README.md: for instructions on how to use pup to reproduce the slice of the issue i'm facing in my broader architecture.
Hello! First off- I love this project and I've been testing it across a vast array of hardware-- i'm mostly frontend usually and not super familiar with lower level backend systems and pup has been amazing at letting me keep my prototypes organized.
I'm currently running into an issue on a raspberry pi 4 that i've not experienced on any other hardware-- i know it works on rasperry pis, as I have other passing test units.
I'm using pup to start a mix of node and deno services, for example, my edge client i start with
deno run -A client.js
and i wrap that in my deno.json as
deno task start-client
which i configure for pup as
and i'll start all currently active features with pup
the problem I'm facing seems to be in between pup and deno.
The error in the output is
I can run
deno task start-client
on device and get my web server on port 8000, but when pup seems run thedeno task start-client
command, it seems to look in the .plan98 folder (where i have the plan98 repository cloned) for a non-existent task folder instead of running the full start-client command fromdeno task
.My hunch is there's some command translation issue under the hood, but I'm not able to reproduce this bug on any other device.
The text was updated successfully, but these errors were encountered: