Hi I have this error when I tried to install my app from a turbo repo
May 19 10:06:40 AM /bin/sh: 1: remix: not found
May 19 10:06:40 AM error Command failed with exit code 127.
May 19 10:06:40 AM info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
May 19 10:06:40 AM error Command failed.
May 19 10:06:40 AM Exit code: 127
May 19 10:06:40 AM Command: /opt/render/project/nodes/node-16.17.0/bin/node
May 19 10:06:40 AM Arguments: /opt/yarn-v1.22.5/lib/cli.js build
May 19 10:06:40 AM Directory: /opt/render/project/src/apps/web
May 19 10:06:40 AM Output:
May 19 10:06:40 AM
May 19 10:06:40 AM info Visit https://yarnpkg.com/en/docs/cli/workspace for documentation about this command.
I used this configuration
previewsEnabled: true
services:
- type: web
name: fdc
env: node
plan: starter
region: frankfurt
buildCommand: yarn && yarn workspace @fdc/web build
startCommand: yarn workspace @fdc/web start
healthCheckPath: /
I don’t specify any Root Directory, and the remix module is inside my @fdc/web package (In turbo-repo inside /apps/web)
Do you have an idea why my remix package is not found?
I used the same config on another project and it worked fine.