chore: initial commit

This commit is contained in:
2026-06-13 00:11:05 +01:00
commit 2742a3baac
10 changed files with 277 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
// List of hosts to be able to wake up using Kratos.
// The first item in the array will be the default when hitting the kratos homepage, to
$hosts = array(
array(
"mac_address" => "64:16:7F:B1:D8:31",
"ip_address" => "10.0.0.1",
"name" => "gaia",
"friendly_name" => "Gaia (Home Server)"
),
array(
"mac_address" => "89:96:F3:36:D4:C4",
"ip_address" => "10.0.0.2",
"name" => "fedora",
"friendly_name" => "Fedora (Desktop)"
)
);
print_r(json_encode($hosts));