Skip to content

Commit 9eb40b6

Browse files
authored
Merge pull request #49 from junotb/feature/2026-02-12
chore: Cloud Run 프로덕션 URL 적용 및 env 예시 파일 제거
2 parents e01b752 + abcc90e commit 9eb40b6

3 files changed

Lines changed: 2 additions & 32 deletions

File tree

api/.env.example

Lines changed: 0 additions & 22 deletions
This file was deleted.

web/.env.example

Lines changed: 0 additions & 8 deletions
This file was deleted.

web/src/constants/api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
const isProd = process.env.NODE_ENV === "production";
22

33
/** Cloud Run 배포 후 실제 서비스 URL로 교체 (GCP Console > Cloud Run > 서비스 URL 확인) */
4-
const PROD_API_URL = "https://lms-api-xxxxx-xx.a.run.app";
5-
const PROD_WEB_URL = "https://lms-web-xxxxx-xx.a.run.app";
4+
const PROD_API_URL = "https://lms-api-342883012014.asia-northeast3.run.app";
5+
const PROD_WEB_URL = "https://lms-web-342883012014.asia-northeast3.run.app";
66

77
export const API_URL = isProd ? PROD_API_URL : "http://localhost:8080";
88
export const AUTH_CLIENT_BASE_URL = isProd ? PROD_WEB_URL : "http://localhost:3000";

0 commit comments

Comments
 (0)