- Install Node.js & NPM from
https://nodejs.org/en/
. - Clone the repository.
- cd into the directory and run
npm install
. - install nodemon globally by running
npm i -g nodemon
(For development purposes). - install PM2 for node application management using
npm i -g pm2
.
- Development
- run the application from the project directory using the command
nodemon .
.
- run the application from the project directory using the command
- Production
- run the application on the desired server using the command
pm2 start ./bin/www --name thetatauomb.com
from within the project directory.
- run the application on the desired server using the command