Files
phalapi-pro/public/wiki/how-to-wiki.md
2022-03-21 11:16:38 +08:00

25 lines
701 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 如何编写开发手册
开发手册基于docsify采用简洁的markdown格式编写。
其目录结构如下:
+ 开发手册入口文件:```./public/wiki/index.html```
+ 封面文件:```./public/wiki/_coverpage.md```
+ 顶部菜单:```./public/wiki/_navbar.md```
+ 左侧菜单配置:```./public/wiki/_sidebar.md```
+ 手册首页:```./public/wiki/README.md```
更多请继续阅读下一节:[文档编写规范](/guide.md)。
如果不希望外网可以访问此开发手册可以在正式环境禁止访问wiki目录参考Nginx配置
```
# 禁止访问开发手册
location ^~ /wiki/ {
deny all;
}
```
然后改为访问内网测试环境。