> The description of using play! with intellij mentions "You can use the
> Run and Debug using the context menu.".
>
> I have imported the iml in an intellij project, but I am not sure what
> context menu is referred to. So I don't know what/how to run/debug.
I'm not sure about the "run" aspect, but debug works just liek
debugging any other remote application:
1) Start your app in using the normal "play run" command. While in dev
mode, play defaults to running the app with a debug listening port
open. I forget the actual port number, but its' printed out when you
start the app.
2) In IDEA, create a Run/Debug configuration of the type "Remote".
Change the "port" field to whatever Play printed out when you started
it.
3) Start the previously created remote debug configuration. Any
breakpoints you set will be hit just like normal.