Hi Team,
When any new team member trying to setup the container based application then rendering container is not starting due to missing npm-run-all dependencies.
And fix suggested by Jean-François (Jeff) L'Heureux to add the following lines before docker-compose up -d at \HelixExample\examples\helix-basic-nextjs\up.ps1:
# Install npm modules in rendering folder
Push-Location .\src\Project\BasicCompany\nextjs
npm install
Pop-Location