Skip to content

Commit

Permalink
Merge branch 'master' of github.com:flyteorg/flyte into inputs-output…
Browse files Browse the repository at this point in the history
…s-wrapper
  • Loading branch information
EngHabu committed Jan 11, 2024
2 parents 35419b6 + 32cde08 commit 99d0e10
Show file tree
Hide file tree
Showing 70 changed files with 16,551 additions and 1,801 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ Join the likes of LinkedIn, Spotify, Freenome, Pachama, Warner Bros. and many ot

## How to stay involved
📆 [Weekly office hours](https://calendly.com/flyte-office-hours-01/30min): Live informal sessions with the Flyte team held every week. Book a 30-minute slot and get your questions answered. <br>
👥 [Biweekly community sync](https://www.addevent.com/event/EA7823958): A biweekly event where the Flyte team provides updates on the project and community members can share their progress and ask questions. <br>
👥 [Monthly community sync](https://www.addevent.com/event/EA7823958): Happening the first Tuesday of every month, this is where the Flyte team provides updates on the project, and community members can share their progress and ask questions. <br>
💬 [Slack](https://slack.flyte.org/): Join the Flyte community on Slack to chat with other users, ask questions, and get help. <br>
⚠️ [Newsletter](https://lists.lfaidata.foundation/g/flyte-announce/join): join this group to receive the Flyte Monthly newsletter. <br>
📹 [Youtube](https://www.youtube.com/channel/UCNduEoLOToNo3nFVly-vUTQ): Tune into panel discussions, customer success stories, community updates and feature deep dives. <br>
Expand Down
53 changes: 0 additions & 53 deletions datacatalog/Dockerfile

This file was deleted.

7 changes: 6 additions & 1 deletion docs/_ext/import_projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ class Project:
```
"""

VERSION_PATTERN = r"^v[0-9]+.[0-9]+.[0-9]+$"


class ListTableToc(SphinxDirective):
"""Custom directive to convert list-table into both list-table and toctree."""
Expand Down Expand Up @@ -146,7 +148,10 @@ def import_projects(app: Sphinx, config: Config):
dest_docs_dir = srcdir / project.dest

if repo:
tags = sorted(repo.tags, key=lambda t: t.commit.committed_datetime)
tags = sorted(
[t for t in repo.tags if re.match(VERSION_PATTERN, t.name)],
key=lambda t: t.commit.committed_datetime
)
if not tags:
# If tags don't exist just use the current commit. This occurs
# when the git repo is a shallow clone.
Expand Down
12 changes: 12 additions & 0 deletions docs/_static/algolia-search.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*global docsearch*/

docsearch({
container: ".docsearch",
appId: "WLG0MZB58Q",
apiKey: "28bf9bfd4a77a7d6b3ab7e98c671e781",
indexName: "flyte",
searchParameters: {
hitsPerPage: 10,
// See https://www.algolia.com/doc/api-reference/api-parameters/
},
});
23 changes: 23 additions & 0 deletions docs/_static/algolia.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* Algolia Docs Search Style */
.docsearch {
width: 100% !important;
}

.DocSearch-Button {
height: 60px !important;
width: 100% !important;
margin: 0px !important;
border-radius: 0 !important;
border-bottom: 1px solid var(--color-header-border) !important;
background: var(--color-sidebar-background) !important;
padding: 0 15px !important;
}

.DocSearch-Button:hover, .DocSearch-Button:active {
box-shadow: none !important;
background: var(--docsearch-searchbox-background) !important;
}

.sidebar-search-container::before {
content: none;
}
11 changes: 11 additions & 0 deletions docs/_static/flyte.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ h6 {
width: 100% !important;
margin: 0px !important;
border-radius: 0 !important;
border-top: 1px solid var(--color-header-border) !important;
border-bottom: 1px solid var(--color-header-border) !important;
background: var(--color-sidebar-background) !important;
padding: 0 15px !important;
Expand All @@ -53,6 +54,16 @@ h6 {
background: var(--docsearch-searchbox-background) !important;
}

.DocSearch-Button-Key {
border-radius: 3px !important;
box-shadow: var(--docsearch-key-shadow) !important;
color: var(--docsearch-muted-color) !important;
display: flex !important;
margin-right: 0.4em !important;
padding: 0 0 2px !important;
border: 0 !important;
}

.sidebar-search-container::before {
content: none;
}
Expand Down
125 changes: 125 additions & 0 deletions docs/_templates/base.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions docs/_templates/page.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions docs/_templates/sidebar/search.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ["_static"]
html_css_files = ["custom.css", "flyte.css"]
html_css_files = ["custom.css", "flyte.css", "algolia.css"]

# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
Expand Down
54 changes: 0 additions & 54 deletions flyteadmin/Dockerfile

This file was deleted.

44 changes: 0 additions & 44 deletions flyteadmin/scheduler.Dockerfile

This file was deleted.

Loading

0 comments on commit 99d0e10

Please sign in to comment.