From 2f23080fab73b11e3fe4eba1337d4cf52fe0c17f Mon Sep 17 00:00:00 2001 From: Zuo <19158724049@163.com> Date: Sun, 2 Aug 2026 22:21:29 +0800 Subject: [PATCH] =?UTF-8?q?v0.1.0=20=E9=A6=96=E4=B8=AA=E5=8F=91=E5=B8=83:R?= =?UTF-8?q?EADME=20+=20=E5=BF=BD=E7=95=A5=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- .gitignore | 17 +++++++++++++++++ README.md | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fcadb44 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# 构建产物(后续上传源码时启用) +bin/ +obj/ +publish-single/ +*.user +.vs/ +.idea/ + +# 前端 +node_modules/ +dist/ + +# 运行时数据(不入库) +services.json +theme.json +window.json +settings.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..963d487 --- /dev/null +++ b/README.md @@ -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 +- 首个发布版本