How to install the game! frame modules?

I am trying to install this pagination module for my game! application but cannot make it work. I extracted the zip file inside / play / modules / paginate -head /, and I will give an example SO here to change the dependencies.yml file to:

# Application dependencies

require:
    - play
    - pagination -> paginate-head

repositories:
    - My modules:
        type:       local
        artifact:   ${application.path}/../[module]
        contains:
            - paginate-head

But I still don't think the module is loading. I assume that the documentation should appear on http://localhost:9000/@documentation/homeor are there other ways to see if the module has been loaded? This does not tell me anything in the console.

Any ideas how to install this?

+3
source share
1 answer

You do not need to extract the zip file just by running the command

play install paginate-head

. . "" dependencies.yml. ! , .

, :

require:
    - play
    - play -> paginate head

"- > ", , . "paginate" "head". , "paginate" - , "head" - , .

, , Play! , . ! . , .

Hope this helps!

+6
source