Yiistrap: How To Get Gii To Work?

I created an app using




composer create-project crisu83/yii-app [APP-NAME]



How do I get the bootstrap Gii to work?

I think gii bootstrap in yii-app is broken.

I got the bootstrap to run by changing the main-environment.php


    

  'modules' => array(

        'gii' => array(

            'class' => 'system.gii.GiiModule',

            'generatorPaths' => array('vendor.crisu83.yiistrap.gii'  ),

            'password' => 'yii',

            'ipFilters' => array('127.0.0.1', '10.0.2.2'/* Vagrant */, '::1'/* WAMP */),

        ),

    ),



but the generated views do not work.

It just has TOOLBAR displayed although ‘view source’ will show a lot of HTML.