how to deploy yeoman angular-fullstack project?

前端 未结 4 1061
梦毁少年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:36

    Install generator-angular-fullstack:

    npm install -g generator-angular-fullstack
    

    Make a new directory, and cd into it:

    mkdir my-new-project && cd $_
    

    Run yo angular-fullstack, optionally passing an app name:

    yo angular-fullstack [app-name]
    

    Run grunt for building, gruntserve for preview, andgrunt serve:dist` for a preview of the built app

提交回复
热议问题