Reputation: 1994
I've download the Scala plugin and imported an activator application into IntelliJ, but all tutorials and how-to's online and on StackOverflow say to choose "Play 2 App", but it's simply not there.
What am I missing?
Versions:
Upvotes: 1
Views: 1670
Reputation: 365
Hi @pedrofurla you are right. With community edition you will not have feature in your IntelliJ IDEA to create Play Application directly.
If you wish to create Play application make sure you have downloaded Typesafe Activator. GOTO cmd prompt and then simply run below command,
-->
Open -->
then select your project and checked option "Auto import"Once you perform above steps it will download some dependency and will take some time to prepare your app.
Once process complete from your project path execute "activator run" command and open http://localhost:9000 to check everything works fine and test your app.
Upvotes: 1