All Projects β†’ shamin β†’ Greenboard

shamin / Greenboard

Licence: mit
πŸ“– Gatsby theme for api documentation

Projects that are alternatives of or similar to Greenboard

Docfx
Tools for building and publishing API documentation for .NET projects
Stars: ✭ 2,873 (+1097.08%)
Mutual labels:  api, documentation
Rcpress
基于reactε’ŒAnt Designηš„ζ–‡ζ‘£η”Ÿζˆε™¨ 🎨
Stars: ✭ 178 (-25.83%)
Mutual labels:  documentation, gatsby
Jsdoc
An API documentation generator for JavaScript.
Stars: ✭ 12,555 (+5131.25%)
Mutual labels:  api, documentation
Docs
API Platform documentation
Stars: ✭ 119 (-50.42%)
Mutual labels:  api, documentation
Postman Docs
Documentation for Postman, a collaboration platform for API development. Available for Mac, Windows and Linux.
Stars: ✭ 235 (-2.08%)
Mutual labels:  api, documentation
L5 Swagger
OpenApi or Swagger integration to Laravel
Stars: ✭ 1,781 (+642.08%)
Mutual labels:  api, documentation
Backend.ai
Backend.AI is a streamlined, container-based computing cluster orchestrator that hosts diverse programming languages and popular computing/ML frameworks, with pluggable heterogeneous accelerator support including CUDA and ROCM.
Stars: ✭ 233 (-2.92%)
Mutual labels:  api, documentation
Drf Autodocs
Ultimately automated DRF documentation rendering(UNMAINTAINED)
Stars: ✭ 82 (-65.83%)
Mutual labels:  api, documentation
Docs
Repository of Twilio SendGrid's product documentation.
Stars: ✭ 221 (-7.92%)
Mutual labels:  documentation, gatsby
Swagger2markup
A Swagger to AsciiDoc or Markdown converter to simplify the generation of an up-to-date RESTful API documentation by combining documentation that’s been hand-written with auto-generated API documentation.
Stars: ✭ 2,330 (+870.83%)
Mutual labels:  api, documentation
Pico8 Api
Unofficial PICO-8 API with a lovely design ! ::
Stars: ✭ 115 (-52.08%)
Mutual labels:  api, documentation
Spectaql
Autogenerate static GraphQL API documentation
Stars: ✭ 198 (-17.5%)
Mutual labels:  api, documentation
Restful Api Guidelines
A model set of guidelines for RESTful APIs and Events, created by Zalando
Stars: ✭ 1,397 (+482.08%)
Mutual labels:  api, documentation
Awesome Documentation Tools
πŸ”₯ πŸ“š All the tools, processes and resources you need to create an awesome API & Project documentation
Stars: ✭ 138 (-42.5%)
Mutual labels:  api, documentation
Swagger Combine
Combines multiple Swagger schemas into one dereferenced schema.
Stars: ✭ 102 (-57.5%)
Mutual labels:  api, documentation
Sentry Docs
The new place for the sentry documentation (and tools to build it)
Stars: ✭ 160 (-33.33%)
Mutual labels:  documentation, gatsby
Cross Platform Node Guide
πŸ“— How to write cross-platform Node.js code
Stars: ✭ 1,161 (+383.75%)
Mutual labels:  api, documentation
Zeal
Offline documentation browser inspired by Dash
Stars: ✭ 9,164 (+3718.33%)
Mutual labels:  api, documentation
Gatsby Starter Rocket Docs
The documentation starter you were looking for (ready for Gatsby v3) ⚑️
Stars: ✭ 182 (-24.17%)
Mutual labels:  documentation, gatsby
Hexo Theme Doc
A documentation theme for the Hexo blog framework
Stars: ✭ 222 (-7.5%)
Mutual labels:  api, documentation

Gatsby

Greenboard

Greenboard - Generate beautiful static api documentation  | Product Hunt Embed

Create beautiful api documentation with gatsby and greenboard

Features

  • Generate static site from markdown
  • Get all features of gatsby and react
  • Fully customizable
  • Dark Mode
  • Uses same structure of slate docs.

Installation

Setup your folder and install gatsby, react and react-dom

mkdir my-docs
cd my-docs
yarn init

yarn add gatsby react react-dom

Install greenboard

yarn add gatsby-greenboard

Then add gatsby-greenboard to your gatsby-config.js.

module.exports = {
  plugins: [
    {
      resolve: "gatsby-greenboard",
      options: {},
    },
  ],
}

Now create your api documentation in data/index.html.md. You can check a sample format in here

That's it, you can now run your gatsby site using

yarn gatsby develop

Build the production files

yarn gatsby build

Customization

To get more customization fork this repo.

Clone the repo

https://github.com/shamin/greenboard.git

Travese to the folder

cd greenboard

Install dependencies

yarn

To run example locally

yarn workspace example develop

To build example

yarn workspace example build

To run the build files locally with serve

npm install -g serve

cd example/build
serve

To deploy example to github pages

yarn workspace example deploy

FAQs

How can I deploy the docs to a non root path

Add the pathPrefix to gatsby-config.js in your docs folder

module.exports = {
  pathPrefix: `/docs`,
}

Run build command

yarn workspace example build

For more information visit https://www.gatsbyjs.org/docs/path-prefix/

Help

If you need some help you can contact me on my email [email protected]

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].