commit 2f23080fab73b11e3fe4eba1337d4cf52fe0c17f Author: Zuo <19158724049@163.com> Date: Sun Aug 2 22:21:29 2026 +0800 v0.1.0 首个发布:README + 忽略规则 Co-Authored-By: Claude Fable 5 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 +- 首个发布版本