All Projects → edgeSuperman → hornibills

edgeSuperman / hornibills

Licence: other
犀鸟 方便快捷的文档接口管理

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
PHP
23972 projects - #3 most used programming language

Labels

Projects that are alternatives of or similar to hornibills

ripgrep-zh
中文翻译:<BurntSushi/ripgrep> 一个面向行的搜索工具 ❤️ 校对 ✅
Stars: ✭ 82 (+5.13%)
Mutual labels:  docs
docz-theme-extended
Extended default theme for docz with added components and redesigned UI.
Stars: ✭ 45 (-42.31%)
Mutual labels:  docs
papyrum
Papyrum is a tool that will help you in the creation of your design system, style guide or in the documentation of your project based on react
Stars: ✭ 19 (-75.64%)
Mutual labels:  docs
now-docs
[WIP] Deploy docs with a single command using Now
Stars: ✭ 45 (-42.31%)
Mutual labels:  docs
docs.getleon.ai
📝 Main documentation of Leon.
Stars: ✭ 23 (-70.51%)
Mutual labels:  docs
mdBook-zh
中文翻译:<mdBook> 一个从 Markdown 文件创建现代在线书籍的实用程序 ❤️ 更新 ✅ 2022-1-8
Stars: ✭ 24 (-69.23%)
Mutual labels:  docs
readonlyrest-docs
Official Documentation of ReadonlyREST Plugin
Stars: ✭ 77 (-1.28%)
Mutual labels:  docs
docs
Documentation for Slidev
Stars: ✭ 69 (-11.54%)
Mutual labels:  docs
yii2-manual-chm
Yii 2 Guide/API/Docs compiled in various formats
Stars: ✭ 63 (-19.23%)
Mutual labels:  docs
documentation
Documentation for software located in the binhex repositories.
Stars: ✭ 53 (-32.05%)
Mutual labels:  docs
braze-docs
The Braze Documentation site repository.
Stars: ✭ 40 (-48.72%)
Mutual labels:  docs
dobby
dobby is free and will serve your orders
Stars: ✭ 24 (-69.23%)
Mutual labels:  docs
Documentation
Kodular Documentation
Stars: ✭ 41 (-47.44%)
Mutual labels:  docs
mvp-docs
The Unofficial MVP Contribution Guide:
Stars: ✭ 18 (-76.92%)
Mutual labels:  docs
azureselected
Azure Selected content localization.
Stars: ✭ 17 (-78.21%)
Mutual labels:  docs
instapy-docs
📜 Public information for users, testers, contributors, maintainers
Stars: ✭ 60 (-23.08%)
Mutual labels:  docs
docs
The Codewars Docs 🚧 WIP
Stars: ✭ 34 (-56.41%)
Mutual labels:  docs
nuxt3-docs-zh
Nuxt3中文文档
Stars: ✭ 38 (-51.28%)
Mutual labels:  docs
PygameDocs
关于Pygame库的中文文档
Stars: ✭ 33 (-57.69%)
Mutual labels:  docs
zfnd
The Zcash Foundation Website
Stars: ✭ 13 (-83.33%)
Mutual labels:  docs

hornibills

##什么是犀鸟?

犀鸟是一个在线文档系统,致力于快速解决团队内部接口文档的编写和沉淀。

力求用最简单的方式部署您的文档系统,拥有最方便的文档管理。

一些想法借鉴了iodocs

##长啥样?

示例

因为用的是sae,所以不支持本地修改,但是看看样子足够了。

##犀鸟如何部署?

犀鸟采用bootstrap+angularjs+php开发。

获取源文件,部署到您支持php的webserver的可访问目录即可。

enjoy!

##常见问题 ###如何解决版本问题?

每次修改动作触发后,都会在**data/**目录下留下修改文件的一个快照。

例如:data/type[2013-12-29]1388326575.json,适当人工就可以操作一次回滚,或者diff下修改。

###我有很多现成的接口在word里,我如何快速弄到犀鸟里?

犀鸟没有db,所有接口在data/各种.json里维护。

data/type.json是一个特殊的json,里面存储的是您接口的分类,格式简单

[{"name":"notes模块文档","href":"notes","description":"123"},...]

其中href是当前分类的类似主键的东西。

那么data/notes.json对应此分类,维护此分类下的所有接口,样例如下:

[
    {
        "name": "一个接口的名字",
        "url": "该接口的url",
        "method": "POST",
        "description": " 接口的描述",
        "params": [
            {
                "Name": "param_1_name",
                "Required": "Y",
                "Default": "",
                "Type": "string",
                "Description": "Description of the first parameter."
            },
            {
                "Name": "userId",
                "Required": "Y",
                "Default": "",
                "Type": "string",
                "Description": "The userId parameter that is in the URI."
            }
        ],
        "response": [
            {
                "Name": "param_1_name",
                "Required": "Y",
                "Default": "",
                "Type": "string",
                "Description": "Description of the first parameter."
            },
            {
                "Name": "userId",
                "Required": "Y",
                "Default": "",
                "Type": "string",
                "Description": "The userId parameter that is in the URI."
            }
        ],
        "demo": "<?php \n\r var_dump(123);"
    }
]

聪明的你一定已经看明白了,你可以自行写一个程序,跑下你之前的接口格式,跑成这样的json文件就可以了。

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].