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

docs: fix refs to Python CDK manifest yaml (#48576)

This commit is contained in:
Aaron ("AJ") Steers
2024-11-20 10:53:15 -08:00
committed by GitHub
parent cfcf6a223e
commit 0727e4435a
5 changed files with 2898 additions and 27 deletions

View File

@@ -1,24 +0,0 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
build:
os: ubuntu-20.04
tools:
python: "3.9"
# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: airbyte-cdk/python/reference_docs/_source/conf.py
# Set the version of Python and requirements required to build your docs
python:
install:
- method: pip
path: airbyte-cdk/python
extra_requirements:
- sphinx-docs

View File

@@ -153,4 +153,4 @@ For examples of production-ready config-based connectors, refer to:
## Reference
The full schema definition for the YAML file can be found [here](https://raw.githubusercontent.com/airbytehq/airbyte/master/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_component_schema.yaml).
The full schema definition for the YAML file can be found [here](https://raw.githubusercontent.com/airbytehq/airbyte-python-cdk/main/airbyte_cdk/sources/declarative/declarative_component_schema.yaml).

View File

@@ -6,7 +6,7 @@ import schema from "../../../../airbyte-cdk/python/airbyte_cdk/sources/declarati
This page lists all components, interpolation variables and interpolation macros that can be used when defining a low code YAML file.
For the technical JSON schema definition that low code manifests are validated against, see [here](https://github.com/airbytehq/airbyte-python-cdk/blob/main//airbyte_cdk/sources/declarative/declarative_component_schema.yaml).
For the technical JSON schema definition that low code manifests are validated against, see [here](https://github.com/airbytehq/airbyte-python-cdk/blob/main/airbyte_cdk/sources/declarative/declarative_component_schema.yaml).
<ManifestYamlDefinitions />

View File

@@ -20,7 +20,7 @@ demonstrate the following concepts in action:
**This tutorial is meant for those interested in learning how the Airbyte Specification
works in detail, not for creating production connectors**. If you're building a real source, you
should start with using the [Connector Builder](../../connector-builder-ui/overview), or the
[Connector Development Kit](https://github.com/airbytehq/airbyte/tree/master/airbyte-cdk/python/docs/tutorials).
[Connector Development Kit](../../cdk-python/).
:::