Hi!
I'd like to deploy a Node.js webapp. I want to use deployment via GitHub. Whenever there is a new Push an master, the webapp instance should re-deploy by running "npm install && npm run build && npm start". How can I achieve this.
IMHO these are the basic steps to kick-off a node server. The webapp has been created with "--is-linux" and ideally I don't want to involve kudu.
Would be nice to have something like azure.config.js
{
node: 9.4,
command: "npm install && npm run build && npm start",
port: 3000
}