feat(ai-character): 관리자 웹 기반 구성

This commit is contained in:
Yu Sung
2026-07-26 03:28:09 +09:00
parent 1dcbf43320
commit 42027b9f0d
26 changed files with 4368 additions and 36 deletions

36
README.md Normal file
View File

@@ -0,0 +1,36 @@
# AI 캐릭터 관리자 웹
React, TypeScript, Vite 기반 독립 관리자 SPA입니다.
## Requirements
- Node.js 24.12.0
- npm 11.7.0+
## Setup
```bash
npm ci
npx playwright install chromium webkit
```
## Environment
Vite mode별 API base URL은 아래 파일에 둡니다.
- `.env.development`: `https://test-character-admin.sodalive.net`
- `.env.production`: `https://character-admin.sodalive.net`
## Scripts
```bash
npm run dev
npm run build:dev
npm run build:prod
npm run typecheck
npm run lint
npm run test
npm run test:run
npm run e2e
npm run build
```