-
Notifications
You must be signed in to change notification settings - Fork 669
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update docs theme Signed-off-by: cosmicBboy <[email protected]> * add community link Signed-off-by: cosmicBboy <[email protected]>
- Loading branch information
1 parent
0475f7a
commit 12f9e8a
Showing
8 changed files
with
129 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
h1, h2, h3, h4, h5, h6 { | ||
font-weight: bold; | ||
} | ||
|
||
.sidebar-logo { | ||
max-width: 30%; | ||
} | ||
|
||
|
||
.sidebar-tree .reference.external:after { | ||
content: none; | ||
} | ||
|
||
div.sphx-glr-download a { | ||
color: #4300c9; | ||
background-color: rgb(241, 241, 241); | ||
background-image: none; | ||
border: 1px solid rgb(202, 202, 202); | ||
} | ||
|
||
div.sphx-glr-download a:hover { | ||
background-color: rgb(230, 230, 230); | ||
box-shadow: none; | ||
} | ||
|
||
div.sphx-glr-thumbcontainer a.headerlink { | ||
display: none; | ||
} | ||
|
||
div.sphx-glr-thumbcontainer:hover { | ||
border-color: white; | ||
box-shadow: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<a class="sidebar-brand{% if logo %} centered{% endif %}" href="{{ home_page }}"> | ||
{% block brand_content %} | ||
{%- if logo %} | ||
<div class="sidebar-logo-container"> | ||
<img class="sidebar-logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/> | ||
</div> | ||
{%- endif %} | ||
{%- if theme_light_logo and theme_dark_logo %} | ||
<div class="sidebar-logo-container"> | ||
<img class="sidebar-logo only-light" src="{{ pathto('_static/' + theme_light_logo, 1) }}" alt="Light Logo"/> | ||
<img class="sidebar-logo only-dark" src="{{ pathto('_static/' + theme_dark_logo, 1) }}" alt="Dark Logo"/> | ||
</div> | ||
{%- endif %} | ||
{% if not theme_sidebar_hide_name %} | ||
<span class="sidebar-brand-text">{{ docstitle }}</span> | ||
{%- endif %} | ||
{% endblock brand_content %} | ||
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
furo | ||
readthedocs-sphinx-search | ||
sphinx | ||
sphinx-prompt | ||
sphinx-material | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,31 @@ | ||
.. flyteidl documentation master file, created by | ||
Welcome to ``FlyteIDL - Flytes Languages Specification`` documentation! | ||
========================================================================= | ||
FlyteIDL contains the core specification of Flyte, using `Googles Protocol Buffers <https://developers.google.com/protocol-buffers>`_. The Specification contains | ||
``FlyteIDL``: Flyte's Core Language Specification | ||
=================================================== | ||
|
||
``FlyteIDL`` contains the core language specification of Flyte, using `Google's Protocol Buffers <https://developers.google.com/protocol-buffers>`_. The Specification contains | ||
|
||
#. The core specification for Flyte Workflows, tasks and the type system | ||
#. The specification for FlyteAdmin's `gRPC <https://grpc.io/>`_ and ``REST`` endpoints | ||
#. Some of the core plugin API's like - Spark, Sagemaker, etc | ||
|
||
This specification is used to generate client stubs for `FlyteKit <https://flyte.readthedocs.io/projects/flytekit/en/master/>`_, `FlyteKit Java <https://github.com/spotify/flytekit-java>`_, `Flytectl <https://github.com/flyteorg/flytectl>`_ and the `FlyteAdmin Service <https://pkg.go.dev/github.com/lyft/flyteadmin>`_. | ||
This specification is used to generate client stubs for `FlyteKit <https://flyte.readthedocs.io/projects/flytekit>`_, `FlyteKit Java <https://github.com/spotify/flytekit-java>`_, `Flytectl <https://github.com/flyteorg/flytectl>`_ and the `FlyteAdmin Service <https://pkg.go.dev/github.com/lyft/flyteadmin>`_. | ||
|
||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Flytekit Learn by Example | ||
:hidden: | ||
|
||
Flyte Documentation <https://flyte.readthedocs.io/en/latest/> | ||
Flytekit Learn by Example <http://flytecookbook.readthedocs.io/> | ||
Getting Started <https://docs.flyte.org/en/latest/getting_started.html> | ||
Tutorials <https://flytecookbook.readthedocs.io> | ||
reference/index | ||
Community <https://docs.flyte.org/en/latest/community/index.html> | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: FlyteIDL API reference & Development | ||
:caption: FlyteIDL | ||
:hidden: | ||
|
||
Overview <self> | ||
gen/pb-protodoc/flyteidl/index | ||
developing | ||
|
||
|
||
Indices and tables | ||
================== | ||
|
||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
############# | ||
API Reference | ||
############# | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: API Reference | ||
:name: apitoc | ||
|
||
Flytekit Python <https://flytekit.readthedocs.io> | ||
Flytekit Java <https://github.com/spotify/flytekit-java> | ||
FlyteIDL <https://flyteidl.readthedocs.io> | ||
Flytectl <https://flytectl.readthedocs.io> | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Component Reference (Code docs) | ||
:name: componentreftoc | ||
|
||
FlytePropeller <https://pkg.go.dev/mod/github.com/flyteorg/flytepropeller> | ||
FlyteAdmin <https://pkg.go.dev/mod/github.com/flyteorg/flyteadmin> | ||
FlytePlugins <https://pkg.go.dev/mod/github.com/flyteorg/flyteplugins> | ||
DataCatalog <https://pkg.go.dev/mod/github.com/flyteorg/datacatalog> | ||
|