Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Copy the file match/config/database.php.dist to local/Config/database.php. Edit the file with your database connection information.

Panelcode
titleExample database.php for PostgreSQL
<?php


 return [


  'Datasources' => [


   'default' => [


    'className' => 'Cake\Database\Connection',


    // Postgres is currently the only supported backend for COmanage Match


    'driver' => 'Cake\Database\Driver\Postgres',


    'host' => 'localhost',


    'username' => 'match',


    'password' => 'somepass',


    'database' => 'matchprod'

]
]

   ]
  ]
 ];

Next Step

Match Installation - Setup Script