Skip to content

Commit

Permalink
feat(docs): add github repo links to readme and docs (#8422)
Browse files Browse the repository at this point in the history
Co-authored-by: socar-dini <[email protected]>
Co-authored-by: Harshal Sheth <[email protected]>
  • Loading branch information
3 people committed Aug 24, 2023
1 parent d26a6f9 commit b3f5613
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ If you're looking to build & modify datahub please take a look at our [Developme
- [acryldata/datahub-actions](https://github.com/acryldata/datahub-actions): DataHub Actions is a framework for responding to changes to your DataHub Metadata Graph in real time.
- [acryldata/datahub-helm](https://github.com/acryldata/datahub-helm): Repository of helm charts for deploying DataHub on a Kubernetes cluster
- [acryldata/meta-world](https://github.com/acryldata/meta-world): A repository to store recipes, custom sources, transformations and other things to make your DataHub experience magical
- [dbt-impact-action](https://github.com/acryldata/dbt-impact-action) : This repository contains a github action for commenting on your PRs with a summary of the impact of changes within a dbt project
- [datahub-tools](https://github.com/makenotion/datahub-tools) : Additional python tools to interact with the DataHub GraphQL endpoints, built by Notion
- [business-glossary-sync-action](https://github.com/acryldata/business-glossary-sync-action) : This repository contains a github action that opens PRs to update your business glossary yaml file.

## Releases

Expand Down
44 changes: 44 additions & 0 deletions docs-website/src/pages/docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ import {
LockTwoTone,
SlackOutlined,
HistoryOutlined,
InteractionOutlined,
GlobalOutlined,
FileTextOutlined,
} from "@ant-design/icons";

//quickLinkCards
Expand Down Expand Up @@ -200,6 +203,39 @@ const quickLinkContent = [
},
];

const gitLinkContent = [
{
title: "datahub",
icon: <ThunderboltTwoTone />,
to: "https://github.com/datahub-project/datahub",
},
{
title: "datahub-actions",
icon: <ApiTwoTone />,
to: "https://github.com/acryldata/datahub-actions",
},
{
title: "datahub-helm",
icon: <FileTextOutlined />,
to: "https://github.com/acryldata/datahub-helm",
},
{
title: "meta-world",
icon: <GlobalOutlined />,
to: "https://github.com/acryldata/meta-world",
},
{
title: "business-glossary-sync-action",
icon: <InteractionOutlined />,
to: "https://github.com/acryldata/business-glossary-sync-action",
},
{
title: "dbt-impact-action",
icon: <NodeExpandOutlined />,
to: "https://github.com/acryldata/dbt-impact-action",
},
];

function Docs() {
const context = useDocusaurusContext();
const { siteConfig = {} } = context;
Expand Down Expand Up @@ -235,6 +271,14 @@ function Docs() {
content={featureGuideContent}
seeMoreLink={{ label: "See all guides", to: "/docs/how/search" }}
/>
<GuideList
title="Github Repositories"
content={gitLinkContent}
seeMoreLink={{
label: "See all repositories",
to: "https://github.com/datahub-project/datahub#source-code-and-repositories",
}}
/>
</div>
</header>
</Layout>
Expand Down

0 comments on commit b3f5613

Please sign in to comment.