Hi, I want to pull content from a MySQL database into Kirby but every time I add db to my config file Kirby breaks and gives me an API error
The JSON response from the API could not be parsed db
. This is my config:
return [
'panel' =>[
'install' => true
],
'db' => [
'host' => 'xxxxx',
'database' => 'xxx'
'user' => 'xxx',
'password' => 'xxx',
],
'debug' => true,
];
I was following the instructions here. What could I be doing wrong?