Add docker entrypoint and env loader

This commit is contained in:
Lectom C Han
2026-02-02 18:52:20 +09:00
parent 0037b90573
commit bf86b1d1e7
30 changed files with 2627 additions and 1547 deletions

View File

@@ -3,6 +3,14 @@ ini_set('display_errors', 1);
error_reporting(E_ALL);
header("Content-Type: application/json; charset=utf-8");
// 기능 비활성화 (PostgreSQL만 사용)
http_response_code(410);
echo json_encode([
"status" => "disabled",
"message" => "해당 기능은 현재 비활성화되어 있습니다."
]);
exit;
/* -----------------------------------------------------
🔵 DB 연결
----------------------------------------------------- */