How to deploy Angular 2 Quick Start project on Linux (CentOs)

6.5k Views Asked by At

I don't understand how to deploy this on CentOS in daemon thread. I can only start it with: npm start. But I want auto start it without my "intervention"! Thank You!

I try to do this, but it doesn't work. pm2 show server work fine, but i cannot see it in browser.

│ status            │ online                          │
│ name              │ app                             │
│ restarts          │ 0                               │
│ uptime            │ 12h                             │
│ script path       │ /usr/bin/http-server            │
│ script args       │ dist -p 3030                    │
│ error log path    │ /root/.pm2/logs/app-error-0.log │
│ out log path      │ /root/.pm2/logs/app-out-0.log   │
│ pid path          │ /root/.pm2/pids/app-0.pid       │
│ interpreter       │ node                            │
│ interpreter args  │ N/A                             │
│ script id         │ 0                               │
│ exec cwd          │ /usr/share/soeui                │
│ exec mode         │ fork_mode                       │
│ node.js version   │ 6.9.1                           │
│ watch & reload    │ ✘                               │
│ unstable restarts │ 0                               │
│ created at        │ 2016-12-21T20:52:58.239Z        |

UPDATE Summary, I just need another servel like nginx for example to deploy it.

1

There are 1 best solutions below

4
On BEST ANSWER

i think the best way is to use angular-cli(https://github.com/angular/angular-cli)

  • create a new local folder on your own computer
  • pull the git project into the folder
  • run 'npm install' on your local machine
  • run 'ng build' on your local machine
  • copy the /dist folder from your local folder to your centOS webserver(apache2 or something)

i am not sure if this is what you expect, but this is how i would do it :)