优化服务端部署-测试部署-1

This commit is contained in:
yml
2026-04-14 23:27:56 +08:00
parent 24d5f233d9
commit 3b169df114
9 changed files with 96 additions and 67 deletions
+2 -2
View File
@@ -44,7 +44,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
### Local Development (without Docker)
```bash
# Backend
cp .env.development.example .env
cp .env.mac-docker.example .env
cd apps/backend
npm install
npm run dev # node --watch restart on src/ changes
@@ -61,7 +61,7 @@ uv sync
### Docker Development (recommended)
```bash
cp .env.development.example .env
cp .env.mac-docker.example .env
docker compose -f docker-compose.dev.yml up -d --build
# Access: http://localhost, noVNC: http://localhost:6080/vnc.html
```