Files
librenms-librenms/tests/bootstrap.php

19 lines
502 B
PHP
Raw Normal View History

2014-09-11 14:50:31 +02:00
<?php
return [
"tcp" => [
"host" => getenv('HOST'),
"port" => getenv('TCP_PORT'),
"protocol" => getenv('TCP_PROTOCOL'),
"database" => getenv('TCP_DB'),
"username" => getenv('USERNAME'),
"password" => getenv('PASSWORD'),
2014-09-13 00:10:45 +02:00
],
"udp" => [
"host" => getenv('HOST'),
"port" => getenv('UDP_PORT'),
"database" => getenv('UDP_DB'),
"username" => getenv('USERNAME'),
"password" => getenv('PASSWORD'),
2014-09-13 00:10:45 +02:00
],
2014-09-11 14:50:31 +02:00
];