SnipeITAPI/database.php

16 lines
356 B
PHP
Raw Normal View History

2016-05-16 15:43:49 -06:00
<?php
2016-05-19 00:41:51 -06:00
/**
* Database configuration. If running on the same machine as snipeit,
* you can probably use the same settings here.
*/
2016-05-16 15:43:49 -06:00
$database = new medoo(
[
'database_type' => 'mysql',
'database_name' => 'snipeit',
'server' => 'localhost',
'username' => 'snipeit',
'password' => 'snipeit',
'charset' => 'utf8'
]
);