Concurrently not found error when deploying the mern project

Trying to deploy this mern repository GitHub - parvathyvd/mern-goal-app: A simple goal creating app ussing node express mongo db and react to render to render . It shows error because concurrently: not found. I have used npm run dev as the start command it is “dev”: “concurrently "npm run server" "npm run client"” . Please let me know how an i resolve this issue.

thanks

Hey,

You’re trying to run the command: concurrently "npm run server" "npm run client" but “concurrently” is not part of our Native Environment: https://render.com/docs/native-environments thus it’s not recognized by the server.

You can either use something like Docker [https://render.com/docs/docker] to create a container where you’ll be able to install any necessary OS-level dependencies or use npm run server && npm run client

Jérémy, Render Support

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.