Spaces:
Running
Running
Create health.php
Browse files
bank-credit-update/health.php
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
// Simple heartbeat
|
| 3 |
+
header('Content-Type: application/json');
|
| 4 |
+
echo json_encode(["status" => "alive", "time" => date('Y-m-d H:i:s')]);
|