From 992a3246a87c25db71a890fcbf8c84610c7c86f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=AF=BC=ED=97=8C?= Date: Mon, 13 Jul 2026 22:07:21 +0900 Subject: [PATCH] =?UTF-8?q?chore(lps-admin):=20=ED=8F=B4=EB=8D=94=EB=AA=85?= =?UTF-8?q?=20lps-temp-fe=20=E2=86=92=20lps-admin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 임시 FE 가 정식 관리자 콘솔이 되어 이름을 용도에 맞게 변경. 루트 병렬 유지(lps/ 는 파이썬 백엔드 루트라 중첩 시 비대칭 + Docker 빌드 컨텍스트 오염). package.json name 동기화. Co-Authored-By: Claude Fable 5 --- {lps-temp-fe => lps-admin}/.gitignore | 0 {lps-temp-fe => lps-admin}/README.md | 0 {lps-temp-fe => lps-admin}/index.html | 0 {lps-temp-fe => lps-admin}/package-lock.json | 0 {lps-temp-fe => lps-admin}/package.json | 2 +- {lps-temp-fe => lps-admin}/src/api/client.ts | 0 {lps-temp-fe => lps-admin}/src/api/types.ts | 0 {lps-temp-fe => lps-admin}/src/components/Layout.tsx | 0 {lps-temp-fe => lps-admin}/src/components/ui.tsx | 0 {lps-temp-fe => lps-admin}/src/index.css | 0 {lps-temp-fe => lps-admin}/src/lib/format.ts | 0 {lps-temp-fe => lps-admin}/src/main.tsx | 0 {lps-temp-fe => lps-admin}/src/pages/Costs.tsx | 0 {lps-temp-fe => lps-admin}/src/pages/Crawl.tsx | 0 {lps-temp-fe => lps-admin}/src/pages/Dashboard.tsx | 0 {lps-temp-fe => lps-admin}/src/pages/Jobs.tsx | 0 {lps-temp-fe => lps-admin}/src/pages/Products.tsx | 0 {lps-temp-fe => lps-admin}/src/pages/Settings.tsx | 0 {lps-temp-fe => lps-admin}/tsconfig.json | 0 {lps-temp-fe => lps-admin}/tsconfig.tsbuildinfo | 0 {lps-temp-fe => lps-admin}/vite.config.ts | 0 21 files changed, 1 insertion(+), 1 deletion(-) rename {lps-temp-fe => lps-admin}/.gitignore (100%) rename {lps-temp-fe => lps-admin}/README.md (100%) rename {lps-temp-fe => lps-admin}/index.html (100%) rename {lps-temp-fe => lps-admin}/package-lock.json (100%) rename {lps-temp-fe => lps-admin}/package.json (95%) rename {lps-temp-fe => lps-admin}/src/api/client.ts (100%) rename {lps-temp-fe => lps-admin}/src/api/types.ts (100%) rename {lps-temp-fe => lps-admin}/src/components/Layout.tsx (100%) rename {lps-temp-fe => lps-admin}/src/components/ui.tsx (100%) rename {lps-temp-fe => lps-admin}/src/index.css (100%) rename {lps-temp-fe => lps-admin}/src/lib/format.ts (100%) rename {lps-temp-fe => lps-admin}/src/main.tsx (100%) rename {lps-temp-fe => lps-admin}/src/pages/Costs.tsx (100%) rename {lps-temp-fe => lps-admin}/src/pages/Crawl.tsx (100%) rename {lps-temp-fe => lps-admin}/src/pages/Dashboard.tsx (100%) rename {lps-temp-fe => lps-admin}/src/pages/Jobs.tsx (100%) rename {lps-temp-fe => lps-admin}/src/pages/Products.tsx (100%) rename {lps-temp-fe => lps-admin}/src/pages/Settings.tsx (100%) rename {lps-temp-fe => lps-admin}/tsconfig.json (100%) rename {lps-temp-fe => lps-admin}/tsconfig.tsbuildinfo (100%) rename {lps-temp-fe => lps-admin}/vite.config.ts (100%) diff --git a/lps-temp-fe/.gitignore b/lps-admin/.gitignore similarity index 100% rename from lps-temp-fe/.gitignore rename to lps-admin/.gitignore diff --git a/lps-temp-fe/README.md b/lps-admin/README.md similarity index 100% rename from lps-temp-fe/README.md rename to lps-admin/README.md diff --git a/lps-temp-fe/index.html b/lps-admin/index.html similarity index 100% rename from lps-temp-fe/index.html rename to lps-admin/index.html diff --git a/lps-temp-fe/package-lock.json b/lps-admin/package-lock.json similarity index 100% rename from lps-temp-fe/package-lock.json rename to lps-admin/package-lock.json diff --git a/lps-temp-fe/package.json b/lps-admin/package.json similarity index 95% rename from lps-temp-fe/package.json rename to lps-admin/package.json index 19a35d9..48c72fe 100644 --- a/lps-temp-fe/package.json +++ b/lps-admin/package.json @@ -1,5 +1,5 @@ { - "name": "lps-admin-fe", + "name": "lps-admin", "private": true, "version": "0.1.0", "type": "module", diff --git a/lps-temp-fe/src/api/client.ts b/lps-admin/src/api/client.ts similarity index 100% rename from lps-temp-fe/src/api/client.ts rename to lps-admin/src/api/client.ts diff --git a/lps-temp-fe/src/api/types.ts b/lps-admin/src/api/types.ts similarity index 100% rename from lps-temp-fe/src/api/types.ts rename to lps-admin/src/api/types.ts diff --git a/lps-temp-fe/src/components/Layout.tsx b/lps-admin/src/components/Layout.tsx similarity index 100% rename from lps-temp-fe/src/components/Layout.tsx rename to lps-admin/src/components/Layout.tsx diff --git a/lps-temp-fe/src/components/ui.tsx b/lps-admin/src/components/ui.tsx similarity index 100% rename from lps-temp-fe/src/components/ui.tsx rename to lps-admin/src/components/ui.tsx diff --git a/lps-temp-fe/src/index.css b/lps-admin/src/index.css similarity index 100% rename from lps-temp-fe/src/index.css rename to lps-admin/src/index.css diff --git a/lps-temp-fe/src/lib/format.ts b/lps-admin/src/lib/format.ts similarity index 100% rename from lps-temp-fe/src/lib/format.ts rename to lps-admin/src/lib/format.ts diff --git a/lps-temp-fe/src/main.tsx b/lps-admin/src/main.tsx similarity index 100% rename from lps-temp-fe/src/main.tsx rename to lps-admin/src/main.tsx diff --git a/lps-temp-fe/src/pages/Costs.tsx b/lps-admin/src/pages/Costs.tsx similarity index 100% rename from lps-temp-fe/src/pages/Costs.tsx rename to lps-admin/src/pages/Costs.tsx diff --git a/lps-temp-fe/src/pages/Crawl.tsx b/lps-admin/src/pages/Crawl.tsx similarity index 100% rename from lps-temp-fe/src/pages/Crawl.tsx rename to lps-admin/src/pages/Crawl.tsx diff --git a/lps-temp-fe/src/pages/Dashboard.tsx b/lps-admin/src/pages/Dashboard.tsx similarity index 100% rename from lps-temp-fe/src/pages/Dashboard.tsx rename to lps-admin/src/pages/Dashboard.tsx diff --git a/lps-temp-fe/src/pages/Jobs.tsx b/lps-admin/src/pages/Jobs.tsx similarity index 100% rename from lps-temp-fe/src/pages/Jobs.tsx rename to lps-admin/src/pages/Jobs.tsx diff --git a/lps-temp-fe/src/pages/Products.tsx b/lps-admin/src/pages/Products.tsx similarity index 100% rename from lps-temp-fe/src/pages/Products.tsx rename to lps-admin/src/pages/Products.tsx diff --git a/lps-temp-fe/src/pages/Settings.tsx b/lps-admin/src/pages/Settings.tsx similarity index 100% rename from lps-temp-fe/src/pages/Settings.tsx rename to lps-admin/src/pages/Settings.tsx diff --git a/lps-temp-fe/tsconfig.json b/lps-admin/tsconfig.json similarity index 100% rename from lps-temp-fe/tsconfig.json rename to lps-admin/tsconfig.json diff --git a/lps-temp-fe/tsconfig.tsbuildinfo b/lps-admin/tsconfig.tsbuildinfo similarity index 100% rename from lps-temp-fe/tsconfig.tsbuildinfo rename to lps-admin/tsconfig.tsbuildinfo diff --git a/lps-temp-fe/vite.config.ts b/lps-admin/vite.config.ts similarity index 100% rename from lps-temp-fe/vite.config.ts rename to lps-admin/vite.config.ts