Despite the fact that you did not mention which version of the game amazes you with such simple words, it can be described as follows: Play in development mode
looks at all the files belonging to your application, and in case of any changes recompiles their parts. Therefore, DEV should not be used for production - as this is an excessive loss of productivity. Otherwise: when you run your application in production mode, this will avoid immediate recompilation, however, it will have performance.
In playback mode 2, the application works in development mode using
play run
or
play ~run
(the first command recompiles the code after the next page click, the second after the next file change)
Launching the application in production mode can be done using
play start
source share