1
0
mirror of synced 2025-12-25 02:09:19 -05:00

Revert "Improving docusaurus sidebar generation (#1927) (#14369)" (#14596)

This reverts commit a2c194a11f.
This commit is contained in:
Topher Lubaway
2022-07-11 15:27:14 -05:00
committed by GitHub
parent c13e35821c
commit 9c6c092a22
379 changed files with 16654 additions and 601 deletions

View File

@@ -0,0 +1,8 @@
# API Documentation Folder
* `generated-api-html`: Plain HTML file automatically generated from the Airbyte OAS spec as part of the build.
* `api-documentation.md`: Markdown for API documentation Gitbook [page](https://docs.airbyte.io/api-documentation).
* `rapidoc-api-docs.html`: HTML for actual API Spec Documentation and linked to in the above Gitbook page. This is a S3 static website hosted out of
the [`airbyte-public-api-docs bucket`](https://s3.console.aws.amazon.com/s3/buckets/airbyte-public-api-docs?region=us-east-2&tab=objects) with a [Cloudfront Distribution](https://console.aws.amazon.com/cloudfront/home?#distribution-settings:E35VD0IIC8YUEW)
for SSL. This file points to the Airbyte OAS spec on Master and will automatically mirror spec changes.
This file will need to be uploaded to the `airbyte-public-api-docs` bucket for any file changes to propagate.

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,12 @@
<!doctype html> <!-- Important: must specify -->
<html>
<head>
<meta charset="utf-8"> <!-- Important: rapi-doc uses utf8 charecters -->
<script type="module" src="https://unpkg.com/rapidoc/dist/rapidoc-min.js"></script>
</head>
<body>
<rapi-doc spec-url="https://raw.githubusercontent.com/airbytehq/airbyte/master/airbyte-api/src/main/openapi/config.yaml"
primary-color = "#625fff"
</rapi-doc>
</body>
</html>