neoneosa You can use this as a reference to fill out the missing values in your config.php:
<?php return array (
'debug' => false,
'database' =>
array (
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'dbname',
'username' => 'db_username',
'password' => 'password',
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
'strict' => false,
),
'url' => 'https://mysite.tld',
'paths' =>
array (
'api' => 'api',
'admin' => 'admin',
),
);