Нет описания

double 104fb7abae fix: unpkg.zhimg.com 4 лет назад
_images f465e4079f feat: 完善发布文章 4 лет назад
_media f22c8e34cf chore: 调整架构 4 лет назад
app 98c4fa0c7c chore: 调整目录 4 лет назад
backend 5e04677af9 style: code style 4 лет назад
frontend 98c4fa0c7c chore: 调整目录 4 лет назад
git 5e04677af9 style: code style 4 лет назад
oper dd13752c35 fix: tools 4 лет назад
.drone.yml 2577ecdeef feat: 工具环境 4 лет назад
.gitignore 3b04b89976 feat: npm install 4 лет назад
.nojekyll f22c8e34cf chore: 调整架构 4 лет назад
Dockerfile 5ffde093db feat: add drone 4 лет назад
README.md 9548a6c866 doc: readme修改 4 лет назад
_coverpage.md 76c7a845bf feat: git标准化提交 4 лет назад
_navbar.md f22c8e34cf chore: 调整架构 4 лет назад
_sidebar.md afee34231b feat: add k8s tool 4 лет назад
host.md 9b8ecf62f4 style: _ 4 лет назад
index.html 104fb7abae fix: unpkg.zhimg.com 4 лет назад
nginx.conf 5ffde093db feat: add drone 4 лет назад

README.md

Docsifyjs

A magical documentation site generator.

Initialize

Clone development-manual repo.

git clone --depth=1 https://git.i2erp.cn/i2-tech/development-manual.git && cd development-manual

Install npm if you don't have one, goto https://nodejs.org/zh-cn.

It is recommended to install docsify-cli globally, which helps initializing and previewing the website locally.

npm i docsify-cli -g

Preview your local site

docsify serve

Then, open Brower http://localhost:3000

Writing article

If you create a file named new-article.md, then it is accessible via /#/new-article, in order to have sidebar, then you can write your new routes in _sidebar.md.

* [Host网址](/host.md)
* Git手册
    * [快速入门](/git/README.md)
    * [提交规范](/git/README.md)
* App手册
    * [快速入门](/app/README.md)
    * [提交规范](/app/README.md)
* 前端手册
    * [快速入门](/frontend/README.md)
    * [提交规范](/frontend/README.md)
* 后端手册
    * [协程并发](/backend/goroutine.md)
* 运维手册
    * [k3s入门](/oper/k3s.md)

Publish

Just commit all you change, all are hotloaded.

git add -A .
git commit -m "feat: add page guide.md"
git push origin master

Preview your remote site

http://47.103.219.158:31201