{"id":20392224,"url":"https://github.com/dibo-software/playground","last_synced_at":"2025-07-11T09:34:38.192Z","repository":{"id":41559366,"uuid":"390232007","full_name":"dibo-software/playground","owner":"dibo-software","description":"Diboot + devtools 体验项目","archived":false,"fork":false,"pushed_at":"2025-03-26T00:57:11.000Z","size":32583,"stargazers_count":8,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master-v3","last_synced_at":"2025-03-26T01:35:45.497Z","etag":null,"topics":["admin","code-generator","devtools","diboot","element-plus","low-code","lowcode"],"latest_commit_sha":null,"homepage":"https://www.diboot.com","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dibo-software.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-07-28T05:58:48.000Z","updated_at":"2025-03-26T00:57:17.000Z","dependencies_parsed_at":"2024-04-16T14:29:54.510Z","dependency_job_id":"4139e8e6-bb9a-44c1-9695-d06cec2a6450","html_url":"https://github.com/dibo-software/playground","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/dibo-software/playground","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dibo-software%2Fplayground","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dibo-software%2Fplayground/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dibo-software%2Fplayground/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dibo-software%2Fplayground/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dibo-software","download_url":"https://codeload.github.com/dibo-software/playground/tar.gz/refs/heads/master-v3","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dibo-software%2Fplayground/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264777811,"owners_count":23662554,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["admin","code-generator","devtools","diboot","element-plus","low-code","lowcode"],"created_at":"2024-11-15T03:40:54.212Z","updated_at":"2025-07-11T09:34:38.154Z","avatar_url":"https://github.com/dibo-software.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# playground V3 新手体验项目\n\u003e Diboot v3.x版本 基础功能+Devtools 体验环境\n\n## 项目启动与devtools等配置说明\n### 0. playground 项目说明\n\u003e 依赖环境：\n  * JDK 17+\n  * MySQL 8 （或Postgres等其他数据库）\n  * Node v16\n  * pnpm\n\n\u003e 项目目录说明:\n  * {demo}：项目的后端接口示例（Spring boot + Diboot v3）(示例 demo 为配置模块名)\n  * {demo}/libs：devtools 开发工具包\n  * diboot-admin-ui：PC端前端项目（Vue3+TypeScript+Vite+Pinia+ElementPlus）\n  * diboot-mobile-ui：移动端前端项目（Vant4）\n\n### 1. 项目配置说明\n\n* 配置{demo}应用的相关参数：\n  * {demo}为后端接口项目，配置启动步骤：\n    * 修改 `application-dev.yml` 中的数据库连接信息，改为本地连接\n    * 配置 devtools 代码生成相关参数：\n      * 将 `diboot.init-sql` 设置为 true ，以开启自动初始化\n      * 配置 `diboot.file.storage-directory` 本地文件存储路径\n      * 配置 `diboot.iam.anon-urls` 中加入 `/diboot/**` 配置项，以放行devtools接口免登录\n      * 配置 `diboot.lcdp.devtools` 相关参数，说明（application-dev.yml中已有配置好的示例）：\n        * license: 订阅用户配置该项，非订阅用户不配置\n        * codes-author: 开发者姓名\n        * codes-copyright: 代码版权归属\n        * codes-version: 代码版本\n        * output-path: 后端代码生成路径\n        * output-path-admin-ui: 前端代码生成路径\n \n### 2. 项目启动与初始化\n\n* 2.1 启动后端项目：\n  * 配置IDEA服务（`{Demo}Application`为启动类），运行后台程序，此时diboot各starter会自动执行初始化SQL。\n* 前端项目：\n  *\n* 2.2 启动 diboot-admin-ui PC端前端项目，步骤：\n  * 命令行切换到 diboot-admin-ui 目录下， 执行install命令安装依赖组件\n  ```cmd\n  pnpm install\n  ```\n  执行 run dev 命令运行\n  ```cmd\n  pnpm run dev\n  ```\n  * 前端启动后登录系统(默认管理员登录账号： `admin` 密码：`123456`)\n\n  \u003e 如需启动移动端前端，切换至 diboot-mobile-ui 移动端前端项目下，参考以上步骤操作即可。\n\n### 3. devtools 开发工具使用\n* 项目启动完毕，可以在控制台看到打印的 devtools 的入口链接，点击链接即可进入devtools。\n~~~\n-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --\n-- Diboot devtools v3.x.x 初始化完成: \n-\u003e URL: http://localhost:8080/api/diboot/index.html\n-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --\n~~~\n\u003e 注：\n\u003e 1. 如您为订阅用户，请配置 `diboot.lcdp.devtools.license` 以便使用devtools全部功能。\n\n## 其他参考文档\n* [V3 技术文档](http://www.diboot.com)\n\n## 技术交流：\n  * **VIP技术支持QQ群**（捐助/付费用户尊享）: [931266830]()\n  \n  * 技术交流QQ群: [731690096]() \n  \n  * 技术交流微信群 加: [wx20201024]() (备注diboot)\n  \n## 关注公众号，diboot动态早知道\n\u003cimg src=\"https://www.diboot.com/qrcode_gzh.jpg\" width = \"200\" height = \"200\" alt=\"关注公众号\" align=center /\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdibo-software%2Fplayground","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdibo-software%2Fplayground","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdibo-software%2Fplayground/lists"}