7 lines
213 B
PHP
Executable File
7 lines
213 B
PHP
Executable File
|
|
<?php
|
|
header('Content-Type: application/json');
|
|
$config = json_decode(file_get_contents('../standalone-index-config.json'), true);
|
|
echo json_encode(["status" => "active", "bridge" => "n8n", "ia_sync" => true]);
|
|
|