My root folder contains two additional folders: backend and frontend. When I run this from my local machine I go into both folders and run ‘npm start’ and everything works as expected.
When deploying to Render I figured I needed to start both client and server concurrently from the root folder. Here is my script:
“scripts”: {
“start”: “concurrently "(cd fpl_app_frontend && npm i && npm run build)" "(cd backend && npm i && npm run start)"”
},
The server starts up just fine, but the build fails after a couple hours of sitting in progress.
Thanks for any help!