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.

6 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?did you ever get this working? im facing a similar issue i think.
I'm seeing:
i made another help post here:
https://discord.com/channels/684898665143206084/1416130552045768874

@Noobie☺ looks like you settled for deploying with Vercel which is looking like i'll have to do as well until this gets resolved
Oh no. I abandoned the idea and just used node instead
I believe it’s not yet supported
ahh..that's a shame