37 lines
573 B
Markdown
37 lines
573 B
Markdown
# 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
|
|
```
|