Setup Mindmapp NodeJS App on Oracle Cloud Free VM
Learning Path
Mindmapp Node.js Application Setup Node.js App on Ubuntu 18.04 - NodeSource
Pre-requirements
Install NodeSource 12.x for Node.js 12 ```shell script curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - sudo apt-get install -y nodejs
1
2
3
4
Check Installation success
```shell script
npm -v
Install some necessary packages for compiling Node.js source ```shell script sudo apt install build-essential
1
2
3
4
5
6
7
### Upload Source code
Git clone source to local
```shell script
git clone https://github.com/Mindmapp/mindmapp.git
cd mindmapp
npm i
Startup the app ```shell script npm start
1
2
3
4
5
How to start the app with pm2 command?
```text
package.json -> scripts:start => `ng serve`
So the application startup by an Angular serve
Specific issue fixing
Modelling Inheritance
References