Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add section landing pages to docusaurus #386

Merged
merged 1 commit into from
Jun 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions docs/website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ const sidebars = {
type: 'category',
label: 'Verified Sources',
className: 'project',
link: {
type: 'generated-index',
title: 'Verified Sources',
description: 'Overview over our verified sources. A source is a location that holds data with certain structure. Organized into one or more resources. We have verified reference implementations for the sources listed below.',
slug: 'verified-sources',
keywords: ['verified source'],
},
items: [
'verified-sources/asana',
'verified-sources/chess',
Expand All @@ -40,6 +47,13 @@ const sidebars = {
{
type: 'category',
label: 'Destinations',
link: {
type: 'generated-index',
title: 'Destinations',
description: 'Overview over our destinations. A destiantion is the data store where data from the source is loaded. Learn how to use them in your pipelines.',
slug: 'destinations',
keywords: ['destination'],
},
items: [
'destinations/bigquery',
'destinations/duckdb',
Expand All @@ -50,6 +64,12 @@ const sidebars = {
{
type: 'category',
label: 'User Guides',
link: {
type: 'generated-index',
title: 'User Guides',
slug: 'user-guides',
keywords: ['user guide'],
},
items: [
'user-guides/analytics-engineer',
'user-guides/data-beginner',
Expand All @@ -60,6 +80,13 @@ const sidebars = {
{
type: 'category',
label: 'Walkthroughs',
link: {
type: 'generated-index',
title: 'Walktroughs',
description: 'Overview over our walkthroughs. Learn how to use and deploy dlt.',
slug: 'walkthroughs',
keywords: ['walkthrough'],
},
items: [
'walkthroughs/create-a-pipeline',
'walkthroughs/add-a-verified-source',
Expand All @@ -71,6 +98,12 @@ const sidebars = {
{
type: 'category',
label: 'General Usage',
link: {
type: 'generated-index',
title: 'General usage',
slug: 'general-usage',
keywords: ['general usage'],
},
items: [
'general-usage/glossary',
'general-usage/import-dlt',
Expand All @@ -88,6 +121,13 @@ const sidebars = {
{
type: 'category',
label: 'Customizations',
link: {
type: 'generated-index',
title: 'Customizations',
description: 'Learn how to customize the default behaviour of dlt to your needs.',
slug: 'customizations',
keywords: ['customization'],
},
items: [
{
type: 'category',
Expand All @@ -102,6 +142,13 @@ const sidebars = {
{
type: 'category',
label: 'Running in production',
link: {
type: 'generated-index',
title: 'Running in production',
description: 'Learn how to run dlt in production.',
slug: 'running-in-production',
keywords: ['production'],
},
items: [
{
type: 'category',
Expand All @@ -121,6 +168,13 @@ const sidebars = {
{
type: 'category',
label: 'Using loaded data',
link: {
type: 'generated-index',
title: 'Using loaded data',
description: 'Learn how to make use of the data loaded by dlt.',
slug: 'using-loaded-data',
keywords: ['loaded data'],
},
items: [
'using-loaded-data/understanding-the-tables',
'using-loaded-data/exploring-the-data',
Expand All @@ -130,6 +184,13 @@ const sidebars = {
{
type: 'category',
label: 'Reference',
link: {
type: 'generated-index',
title: 'Reference',
description: 'The dlthub reference. Learn about the CLI and the telemetry.',
slug: 'reference',
keywords: ['reference'],
},
items: [
'reference/command-line-interface',
'reference/telemetry',
Expand Down