how to deploy yeoman angular-fullstack project?

前端 未结 4 1069
梦毁少年i
梦毁少年i 2021-01-31 11:59

I want to deploy a simple angular projet made with angular fullstack.

https://github.com/DaftMonk/generator-angular-fullstack

I tried :

yo angula         


        
4条回答
  •  感情败类
    2021-01-31 12:35

    You can try pm2 as well which is straightforward and easy, it comes with lots of useful features.

    https://github.com/Unitech/pm2

    // Start new node process
    $ pm2 start dist/server/app.js
    
    // list all process
    $ pm2 list
    

提交回复
热议问题