Noobie☺
Noobie☺2mo ago

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 failing
GitHub
GitHub - waptik/veth: Vite, Expo, TRPC, Hono
Vite, Expo, TRPC, Hono. Contribute to waptik/veth development by creating an account on GitHub.
No description
2 Replies
marvinh.
marvinh.2mo ago
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.
Noobie☺
Noobie☺OP2mo ago
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 find this page helpful?