how to deploy deno in turborepo on Deno EA?
I created a monorepo(https://github.com/waptik/veth/tree/main) with turborepo and it works well on my machine.
I tried deploying the deno app in apps/hono on deno-ea and set entrypoint to
apps/hono/src/index.ts
and set install command to pnpm install
but it's failingGitHub
GitHub - waptik/veth: Vite, Expo, TRPC, Hono
Vite, Expo, TRPC, Hono. Contribute to waptik/veth development by creating an account on GitHub.

2 Replies
The install command is set to
pnpm install
. The pnpm
package manager doesn't know about deno.json
and thus won't install depedencies listed in that file.
Looking at the repo it seems like you have an app in a particular sub-folder of the repository. We're currently working on making it possible to specify a sub-directory in the build settings.Setting the install command to
deno install
does nothing either. so does it mean the way forward at the moment is to convert the deno app into a node app and deploy it elsewhere?