After created a Play Framework first application, it's time to integrate it in IntelliJ Idea. This is made really easy because, play provide a command to create the Iml module file for the project. You can use the command play idealize app_name to create a iml module file. So let's try :
wichtounet@Linux-Desktop:~/dev/play$ play idealize hello/ ~ _ _ ~ _ __ | | __ _ _ _| | ~ | '_ \| |/ _' | || |_| ~ | __/|_|\____|\__ (_) ~ |_| |__/ ~ play! 1.0.3, http://www.playframework.org ~ OK, the application is ready for Intellij Idea ~ Use File/New Module/Import Existing module wichtounet@Linux-Desktop:~/dev/play$If you go on the hello folder, you'll found a "Hello World.iml" file. "Hello World" is the name of the application. So you just have to add it to a IntelliJ Idea project. And it's almost done.