Jhipster 4 Beginner's Guide

Can anyone post a guide for Jhipster 4.0 with angular 2? I don’t care if he is released. I just want to generate the code with the latest code on github and move on. Thanks.

+8
jhipster
source share
1 answer

Update - wikipage published by Deepu on github: https://github.com/jhipster/generator-jhipster/blob/master/NG2-GUIDE.md

I understood myself. But I can not speak for the current state, since I am not a developer.

  • Installation Prerequisites:

    JDK (and JVA_HOME env variable set), git client, npm, maven or gradle

  • First create the directory where you want to clone jhipster angular -2. Then from this directory do:

git clone -b angular -2 -single-branch https://github.com/jhipster/generator-jhipster.git

cd generator-jhipster

npm link

npm install -g gulp bower

  • Create an application directory and from there

yo jhipster

Ignore the update offer and in the second question select angular -2 (beta)

  • Run the application

If you chose Maven:

mvn spring-boot: run

If you chose Gradle:

gradle bootRun

+3
source share

All Articles