Archived
1
0
This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
statstat/settings/globals.php.example
James Stuckey Weber f22eca020c Fix typo
2016-02-06 09:21:40 -05:00

11 lines
478 B
Plaintext

<?php
define('DB_HOST','localhost'); // define sql host
define('DB_NAME', 'database'); // sql database
define('DB_USER', 'user'); // sql database user
define('DB_PASSWORD', 'pw'); // guess what
// THERMOSTAT_TYPE needs to match the directory name of the thermostat plugin you are using.
define('THERMOSTAT_TYPE','honeywell'); // only honeywell supported at this point
$valid_thermostats = ["honeywell"]; // this should really be somewhere else but here it works right now
?>