We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e01b752 + abcc90e commit 9eb40b6Copy full SHA for 9eb40b6
3 files changed
api/.env.example
web/.env.example
web/src/constants/api.ts
@@ -1,8 +1,8 @@
1
const isProd = process.env.NODE_ENV === "production";
2
3
/** 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";
+const PROD_API_URL = "https://lms-api-342883012014.asia-northeast3.run.app";
+const PROD_WEB_URL = "https://lms-web-342883012014.asia-northeast3.run.app";
6
7
export const API_URL = isProd ? PROD_API_URL : "http://localhost:8080";
8
export const AUTH_CLIENT_BASE_URL = isProd ? PROD_WEB_URL : "http://localhost:3000";
0 commit comments