From 56a7fe94d5b04ac0d371d12ac787de0ce5b94d63 Mon Sep 17 00:00:00 2001 From: jjstyle Date: Mon, 9 Feb 2026 15:50:32 +0900 Subject: [PATCH] =?UTF-8?q?=ED=99=98=EA=B2=BD=EB=B3=84=20=EB=B2=84?= =?UTF-8?q?=ED=82=B7=20=EC=84=A4=EC=A0=95=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Config/Constants.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Config/Constants.php b/app/Config/Constants.php index b458c47..46d0f8e 100644 --- a/app/Config/Constants.php +++ b/app/Config/Constants.php @@ -83,7 +83,8 @@ defined('EXIT__AUTO_MAX') || define('EXIT__AUTO_MAX', 125); // highest automa * ncloud url */ // 환경별 버킷 설정 -if (ENVIRONMENT === 'development') { +$environment = getenv('CI_ENVIRONMENT') ?: ENVIRONMENT; +if ($environment === 'development') { define('NCLOUD_S3_BUCKET', 'confirms-object-test'); define('NCLOUD_OBJECT_STORAGE_URL', 'https://kr.object.ncloudstorage.com/confirms-object-test'); } else {