Skip to content

Tutorial: Installation

II. Configure

II.1 Open config.php and change database, username and password according to your specific settings. Change host and port, if necessary.

    <?php

    return [
        'title'  => 'My App',
        'icon'   => 'cube',

        'colorPrimary'        => 'navy',
        'colorPrimaryInverse' => 'white',

        'locale' => 'de_DE',
        'lang'   => 'de',

        'database' => 'my_app_db',

        'databases' => [
            'my_app_db' => [
                'adapter'  => 'mysql',
                'host'     => 'localhost',
                'port'     => '3306',
                'database' => 'my_app_db',
                'username' => 'root',
                'password' => '',
            ],
        ],
    ];

II.2 Create your MySQL Database if not already exists.

II.3 Delete install.php from your web-project directory (important)

On Error

Next Step

First Run