Anyone use the play framework inside of IntelliJ IDEA? What's that experience like?
IDEA is otherwise fantastic though.
71–76 of 76 posts
Anyone use the play framework inside of IntelliJ IDEA? What's that experience like?
IDEA is otherwise fantastic though.
Speaking strictly about the website redesign, I think that (although nice) it fails to communicate the framework biggest selling points. Some comments on that: * The code-save-refresh workflow: this is mentioned briefly as "hit refresh workflow" which is confusing to say the least. * Some other weird or 'meh' bullet points like type-safety (you're using either scala or java so you take that for granted) or stateless-…
Earlier quoted context omitted.
`play run` is sort of the equivalent of `runserver`. `play start` is one of the recommended[0] ways of running Play applications in production. [0] http://www.playframework.com/documentation/2.1.0/Production
There is also `play dist` and `play stage`. They both wrap up all necessary assets / dependencies so that you don't even need play installed in order to start a play server (as the play framework jar gets bundled too). We use this for deploying rather than `play start`. The difference between dist and stage is that dist creates a single zip file in the target directory, whereas stage does not. Both create a file name…
So without the framework installed and in your PATH, you can just go to an app's directory and do "sbt start". It will download all dependencies needed, compile your app and start the server.
nothing that awesome to make me switch from Grails.
I've been eyeing Play for a bit now, but I've been wondering what kind of server it would require for a modest app with basic CMS functionality. So, for example, will it run fine on a 128MB RAM VPS (assuming average IO speeds), a remote db and nginx?