Initial mkdocs configuration

This commit is contained in:
Frederick F. Kautz IV 2015-02-02 13:48:39 -08:00
parent 42f5b3dc1d
commit ba1b7f79ba
6 changed files with 29 additions and 0 deletions

1
docs/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
site/

3
docs/docs/api/manage.md Normal file
View File

@ -0,0 +1,3 @@
# Management API
# GET /

14
docs/docs/api/minio.md Normal file
View File

@ -0,0 +1,14 @@
# Minio API
## /
## GET /bucket/
## PUT /bucket/
## GET /bucket/object
## HEAD /bucket/object
## PUT /bucket/object

View File

@ -0,0 +1 @@
# Architecture

3
docs/docs/index.md Normal file
View File

@ -0,0 +1,3 @@
# Minio API
## Overview

7
docs/mkdocs.yml Normal file
View File

@ -0,0 +1,7 @@
site_name: Minio Documentation
pages:
- ['index.md', Index]
- ['api/minio.md', 'API', 'Minio']
- ['api/manage.md', 'API', 'Management']
- ['architecture.md', 'Architecture', 'Overview']
theme: readthedocs