v0.1.0 首个发布:README + 忽略规则

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Zuo
2026-08-02 22:21:29 +08:00
commit 2f23080fab
2 changed files with 49 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# 构建产物(后续上传源码时启用)
bin/
obj/
publish-single/
*.user
.vs/
.idea/
# 前端
node_modules/
dist/
# 运行时数据(不入库)
services.json
theme.json
window.json
settings.json
+32
View File
@@ -0,0 +1,32 @@
# DevLaunch
> 本地开发服务与工作区一键启动器。WPF + WebView2 承载 React 前端,纯 C# 引擎按配置启停本地服务(Windows 服务 / 进程 / Docker 容器 / 终端工作区)。
## 下载安装
前往 [Releases](../../releases) 下载最新版 `DevLauncher-win64.zip`,解压到任意目录,运行 `DevLauncher.exe` 即可,**免安装绿色版**。
校验完整性(可选):
```bash
sha256sum -c DevLauncher-win64.zip.sha256
```
## 系统要求
- Windows 10 / 11 (x64)
- WebView2 Runtime(Windows 11 已内置;Windows 10 若未预装,从微软官网下载)
## 使用
- 首次启动配置为空,在界面中添加你的本地服务 / 进程 / Docker 容器 / 终端工作区。
- 配置存于 exe 同目录:`services.json`(服务)、`window.json`(窗口状态)、`theme.json`(主题)。
## 诊断
设环境变量 `DEVLAUNCHER_TRACE=1` 可将 bridge 收发日志写入 `%TEMP%/devlauncher_bridge.log`
## 版本日志
### v0.1.0
- 首个发布版本