Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,18 @@ archives:
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
files:
- web/package.json
- web/package-lock.json
- web/index.html
- web/components.json
- web/tsconfig.json
- web/tsconfig.app.json
- web/tsconfig.node.json
- web/vite.config.ts
- web/src/**/*
- web/scripts/**/*
- web/vite-plugins/**/*

- id: neocode-gateway
ids:
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,13 @@ $env:OPENAI_API_KEY = "your_key_here"
neocode --workdir /path/to/your/project
```

如果你希望使用浏览器 Web UI,可以直接运行:
```bash
neocode web
```

标签发布版会在缺少 `web/dist` 时自动使用发布包内的 `web/` 源码执行 `npm install` 和 `npm run build`。这要求用户机器已安装 Node.js 和 npm;如果你使用源码仓库运行,也保留相同的自动构建行为。

### 4. 常用命令

```text
Expand Down
Loading
Loading