All Projects → launchany → Mvp Template

launchany / Mvp Template

Licence: mit
Template for a minimum viable API developer portal, based in Jekyll

Projects that are alternatives of or similar to Mvp Template

Lagrange
A minimalist Jekyll theme for running a personal blog
Stars: ✭ 454 (+845.83%)
Mutual labels:  jekyll, jekyll-template
Nei Toolkit
NEI 接口文档管理平台配套自动化工具
Stars: ✭ 781 (+1527.08%)
Mutual labels:  api, api-documentation
Long Haul
A minimal, type-focused Jekyll theme.
Stars: ✭ 524 (+991.67%)
Mutual labels:  jekyll, jekyll-template
Will Jekyll Template
A simple Jekyll theme.
Stars: ✭ 360 (+650%)
Mutual labels:  jekyll, jekyll-template
Chn Eolinker Ams Lite 4.0 For Php
中国最大的在线API管理平台EOLINKER 旗下API管理系统开源精简版,适合个人以及微型团队使用。
Stars: ✭ 869 (+1710.42%)
Mutual labels:  api, api-documentation
Mundana Theme Jekyll
Mundana is a free Jekyll theme, Medium styled.
Stars: ✭ 402 (+737.5%)
Mutual labels:  jekyll, jekyll-template
Jekyll Theme Chirpy
A minimal, sidebar, responsive web design Jekyll theme that focuses on text presentation.
Stars: ✭ 773 (+1510.42%)
Mutual labels:  jekyll, jekyll-template
Base Jekyll Template
📘 Knowledge base template for Jekyll
Stars: ✭ 272 (+466.67%)
Mutual labels:  jekyll, jekyll-template
Pdoc
API Documentation for Python Projects
Stars: ✭ 853 (+1677.08%)
Mutual labels:  api, api-documentation
Platform Documentation
Core Platform API Documentation & Tutorials
Stars: ✭ 25 (-47.92%)
Mutual labels:  api, api-documentation
Aviator Jekyll Template
💧 API Documentation template for Jekyll
Stars: ✭ 337 (+602.08%)
Mutual labels:  jekyll, jekyll-template
Slate
Beautiful static documentation for your API
Stars: ✭ 33,447 (+69581.25%)
Mutual labels:  api, api-documentation
Hydra Jekyll Template
🐉 Product marketing template for Jekyll
Stars: ✭ 298 (+520.83%)
Mutual labels:  jekyll, jekyll-template
Photography
A free online portfolio website to showcase your photos.
Stars: ✭ 420 (+775%)
Mutual labels:  jekyll, jekyll-template
Chn Eolinker Ams Lite 4.0 For Java
中国最大的API接口管理平台,3.x开源发行版,支持多国语言[英语、简体中文、繁体中文]
Stars: ✭ 275 (+472.92%)
Mutual labels:  api, api-documentation
Moving
A clean and minimalist theme for Jekyll.
Stars: ✭ 701 (+1360.42%)
Mutual labels:  jekyll, jekyll-template
fuse-core
The 'Fuse Core' Jekyll theme.
Stars: ✭ 29 (-39.58%)
Mutual labels:  jekyll, jekyll-template
Edition Jekyll Template
📚 Product documentation template for Jekyll
Stars: ✭ 261 (+443.75%)
Mutual labels:  jekyll, jekyll-template
Mediumish Theme Jekyll
Jekyll Template - Mediumish
Stars: ✭ 786 (+1537.5%)
Mutual labels:  jekyll, jekyll-template
Android10.github.io
Jekyll project for blog: fernandocejas.com.
Stars: ✭ 15 (-68.75%)
Mutual labels:  jekyll, jekyll-template

Minimum viable portal (MVP) template for APIs

This is a fill-in-the-blanks template for a minimum viable API portal that contains a getting started guide and a API reference documentation. Replace all of the [prompts in brackets] with content that's specific to your API. When you've replaced all the bracketed prompts, you'll have the essentials documented sufficiently to help people use your API.

If something in this template doesn't make sense for your API, delete it! And likewise, add any sections you need based on your API's particulars. We hope our suggestions in this template will spark more ideas about documenting features of your API to help users consume it.

Here's the template demo page: https://launchany.github.io/mvp-template/.

Most of the content is written in Markdown, although the homepage is written in HTML. The template itself is a Jekyll site that you can use with gh-pages. If you want to run your docs on gh-pages, here's a guide by Jonathan McGlone to help you get set up: http://jmcglone.com/guides/github-pages/.

Clone this project

Clone this project to get a copy of the template that you can update and personalize.

git clone https://github.com/launchany/mvp-template.git
cd mvp-template

Optional: Run a local copy

Here are GitHub's instructions for running a local copy: https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/.

Files to update

These are the individual files to update with details about your own API.

mvp-template/_config.yml

  • Site settings: title, email, description, baseurl, url, git_address, git_edit_address
  • Theme options: bootwatch theme you want to use to use
  • defaults: schemas for pages (copy, paste, and update schemas as needed when you add or update pages and groups of pages)
  • collections: schemas for pages (copy, paste, and update schemas as needed when you add or update pages and groups of pages)

mvp-template/_about/index.md

Information about your API and documentation.

mvp-template/_data/docs.yml

Menu structure for Documentation pages. This is the file used by /_includes/docs_nav.html to build the left menu that appears on your Documentation pages.

You can add to the menu sections and pages, but any pages you add to this file must be saved in your project's _docs folder.

If you only updated content in /_about/index.md, /_docs Markdown files, or /index.html, you don't need to make any changes in this file.

mvp-template/_docs

Individual files for:

  • Get started and authentication: index.md
  • Workflows: workflows.md
  • Code samples: code_samples.md
  • Reference and endpoints: mdreference.md or openapi.md

This folder also contains a checklist and list of publishing options, which you can delete from your own site.

If you delete, replace, or rename any files in this folder, make sure to update /_data/docs.yml and /_includes/topnav.html to reflect your structural changes.

Markdown vs OpenAPI reference

If you prefer to use Swagger UI to render your reference documentation instead of creating Markdown files, here's what you’ll need to do:

  • Replace the file /dist/swagger_petstore.yml with your own YAML file in your local copy of the template repo to display your spec in the iframe
  • Delete the Markdown reference example file /_docs/mdreference.md
  • Delete the code <li class="active" ><a href="/mvp-template/docs/mdreference/">Reference</a></li> from the file /_includes/topnav.html
  • Delete the - mdreference menu item from the file /_data/docs.yml

To change formatting for the iframe, edit the .intrinsic-container and .intrinsic-container iframe classes in the file /_sass/bootstrap/_grid.scss.

If you prefer to create Markdown files for your reference, here’s what you’ll need to do:

  • Delete the OpenAPI reference example file /_docs/openapi.md
  • Delete the code <li class="active" ><a href="/mvp-template/docs/openapi/">OpenAPI</a></li> from the file /_includes/topnav.html
  • Delete the - openapi menu item from the file /_data/docs.yml

mvp-template/_includes/topnav.html

In this file specifies the text and linked pages to use in the top navigation bar.

If you delete, replace, add, or rename any pages, update the "includes" listings in the <div id="navbar" class="collapse navbar-collapse"> div to reflect your changes.

If you only updated content in /_about/index.md, /_docs Markdown files, or /index.html, you don't need to make any changes in this file.

mvp-template/favicon.ico

Favicon for your documentation site.

mvp-template/img/

Hero image (bg.jpg) and logo (logonav.png) for your documentation site.

bg.jpg specs
logonav.png specs
  • Canvas 410px x 410px
  • Transparent background
  • PNG file

mvp-template/index.html

Content for the home page of your documentation site.

About the theme

This Jekyll documentation theme was developed by Can Güney Aksakalli.

The GitHub repo for this documenation theme is https://github.com/aksakalli/jekyll-doc-theme. The demo is at https://aksakalli.github.io/jekyll-doc-theme/.

The theme is released under the MIT license.

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