What I am trying to achieve is to deploy Angular 9 app to Azure App service with Linux OS (Windows does not suit me because Linux is cheaper) I created Linux web app with Node 14 runtime. After I deployed my app I see Azure default web page. I tried to resolve that as it is described here
Steps I did on Linux web app with Node 14 runtime:
I added this
pm2 serve /home/site/wwwroot --no-daemon --spa
to AppService->Configuration->General Settings->Startup Command
Saved configuration and restarted App Service But got pm2 not found error.
Connected to web app using ssh and have run
npm install pm2 -g
Restarted App Service but still getting pm2 not found.
The question is how to host Angular 9 on Linux app service with Node 14? Should I fix that pm2 not found or I can use some other approach (but still with Linux OS) to solve that?