Reputation: 62596
I have a jhipster project I want to import into IntelliJ Ultimate latest version 2016.3.2. The problem is, after I run my yo jhipster command, when I try to "Import from Existing Project" in IntelliJ 2016, after I select "Maven Project", its not letting me hit the next button to get past that dialogue box. I am running Windows. What is going on?
What is the proper way to import this project??? The youtube video they have on their main site is outdated and does not work at all.
Upvotes: 0
Views: 4240
Reputation: 5495
To start a #Jhipster Maven project on Intellij Community (ver 2017.3.3) :
1 start intellij community
2 import the maven project (if you havent done so already), as explained here: check out the section: Importing a Maven project
3 create a MAVEN configuration by :
This will run your project
HOWEVER, it will not necessarily run the FRONT-END angular app.
To run the angular client : open a terminal (CMD on windows) and go to the base folder of your jhipster project.
Then type:
yarn start
(This should start your frontend)
Upvotes: 2