From 53f28d08d2dc3ee1ab01193f5eab698f7f427ddc Mon Sep 17 00:00:00 2001 From: Erin Cochran Date: Mon, 12 Aug 2024 17:05:40 -0400 Subject: [PATCH 1/8] Add asset pages --- .../guides/data-assets/adding-metadata-to-assets.md | 7 +++++++ .../guides/data-assets/creating-asset-factories.md | 7 +++++++ .../docs/guides/data-assets/creating-data-assets.md | 7 +++++++ .../creating-dependencies-between-assets.md | 7 +++++++ .../guides/data-assets/passing-data-between-assets.md | 7 +++++++ .../guides/data-assets/selecting-subsets-of-assets.md | 7 +++++++ docs/docs-next/sidebars.ts | 11 ++++++++++- 7 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 docs/docs-next/docs/guides/data-assets/adding-metadata-to-assets.md create mode 100644 docs/docs-next/docs/guides/data-assets/creating-asset-factories.md create mode 100644 docs/docs-next/docs/guides/data-assets/creating-data-assets.md create mode 100644 docs/docs-next/docs/guides/data-assets/creating-dependencies-between-assets.md create mode 100644 docs/docs-next/docs/guides/data-assets/passing-data-between-assets.md create mode 100644 docs/docs-next/docs/guides/data-assets/selecting-subsets-of-assets.md diff --git a/docs/docs-next/docs/guides/data-assets/adding-metadata-to-assets.md b/docs/docs-next/docs/guides/data-assets/adding-metadata-to-assets.md new file mode 100644 index 0000000000000..039961567a539 --- /dev/null +++ b/docs/docs-next/docs/guides/data-assets/adding-metadata-to-assets.md @@ -0,0 +1,7 @@ +--- +title: "Adding metadata to assets" +sidebar_position: 4 +sidebar_label: "Adding metadata" +--- + +# Adding metadata to assets \ No newline at end of file diff --git a/docs/docs-next/docs/guides/data-assets/creating-asset-factories.md b/docs/docs-next/docs/guides/data-assets/creating-asset-factories.md new file mode 100644 index 0000000000000..05be6b5fe73f4 --- /dev/null +++ b/docs/docs-next/docs/guides/data-assets/creating-asset-factories.md @@ -0,0 +1,7 @@ +--- +title: "Creating asset factories" +sidebar_position: 5 +sidebar_label: "Creating asset factories" +--- + +# Creating asset factories \ No newline at end of file diff --git a/docs/docs-next/docs/guides/data-assets/creating-data-assets.md b/docs/docs-next/docs/guides/data-assets/creating-data-assets.md new file mode 100644 index 0000000000000..c1d87d59c9d7f --- /dev/null +++ b/docs/docs-next/docs/guides/data-assets/creating-data-assets.md @@ -0,0 +1,7 @@ +--- +title: "Creating data assets" +sidebar_position: 1 +sidebar_label: "Creating data assets" +--- + +# Creating data assets \ No newline at end of file diff --git a/docs/docs-next/docs/guides/data-assets/creating-dependencies-between-assets.md b/docs/docs-next/docs/guides/data-assets/creating-dependencies-between-assets.md new file mode 100644 index 0000000000000..5b4f28029ec46 --- /dev/null +++ b/docs/docs-next/docs/guides/data-assets/creating-dependencies-between-assets.md @@ -0,0 +1,7 @@ +--- +title: "Creating dependencies between assets" +sidebar_position: 2 +sidebar_label: "Creating asset dependencies" +--- + +# Creating dependencies between assets \ No newline at end of file diff --git a/docs/docs-next/docs/guides/data-assets/passing-data-between-assets.md b/docs/docs-next/docs/guides/data-assets/passing-data-between-assets.md new file mode 100644 index 0000000000000..4080a6121a253 --- /dev/null +++ b/docs/docs-next/docs/guides/data-assets/passing-data-between-assets.md @@ -0,0 +1,7 @@ +--- +title: "Passing data between assets" +sidebar_position: 3 +sidebar_label: "Passing data between assets" +--- + +# Passing data between assets \ No newline at end of file diff --git a/docs/docs-next/docs/guides/data-assets/selecting-subsets-of-assets.md b/docs/docs-next/docs/guides/data-assets/selecting-subsets-of-assets.md new file mode 100644 index 0000000000000..2a0e4c47197ff --- /dev/null +++ b/docs/docs-next/docs/guides/data-assets/selecting-subsets-of-assets.md @@ -0,0 +1,7 @@ +--- +title: "Selecting subsets of assets" +sidebar_position: 6 +sidebar_label: "Selecting assets" +--- + +# Selecting subsets of assets \ No newline at end of file diff --git a/docs/docs-next/sidebars.ts b/docs/docs-next/sidebars.ts index af4f5b223f1e1..89e59e0a936e4 100644 --- a/docs/docs-next/sidebars.ts +++ b/docs/docs-next/sidebars.ts @@ -31,7 +31,16 @@ const sidebars: SidebarsConfig = { { type: "category", label: "Data assets", - items: ["guides/data-assets"] + link: { + type: "doc", + id: "guides/data-assets" + }, + items: [ + { + type: 'autogenerated', + dirName: "guides/data-assets" + } + ] }, { type: "category", From c7f7919b4d6b9d8a33fec07d0a7e662c2b4326f6 Mon Sep 17 00:00:00 2001 From: Erin Cochran Date: Mon, 12 Aug 2024 17:22:35 -0400 Subject: [PATCH 2/8] Add Transformations --- .../pushing-operations-to-data-warehouses.md | 6 ++++++ .../working-with-different-data-formats.md | 6 ++++++ .../transformation/working-with-large-datasets.md | 6 ++++++ docs/docs-next/sidebars.ts | 11 ++++++++++- 4 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 docs/docs-next/docs/guides/transformation/pushing-operations-to-data-warehouses.md create mode 100644 docs/docs-next/docs/guides/transformation/working-with-different-data-formats.md create mode 100644 docs/docs-next/docs/guides/transformation/working-with-large-datasets.md diff --git a/docs/docs-next/docs/guides/transformation/pushing-operations-to-data-warehouses.md b/docs/docs-next/docs/guides/transformation/pushing-operations-to-data-warehouses.md new file mode 100644 index 0000000000000..b81b2e20b312d --- /dev/null +++ b/docs/docs-next/docs/guides/transformation/pushing-operations-to-data-warehouses.md @@ -0,0 +1,6 @@ +--- +title: "Pushing operations to data warehouses" +sidebar_position: 2 +--- + +# Pushing operations to data warehouses \ No newline at end of file diff --git a/docs/docs-next/docs/guides/transformation/working-with-different-data-formats.md b/docs/docs-next/docs/guides/transformation/working-with-different-data-formats.md new file mode 100644 index 0000000000000..854a6f32ab193 --- /dev/null +++ b/docs/docs-next/docs/guides/transformation/working-with-different-data-formats.md @@ -0,0 +1,6 @@ +--- +title: "Working with different data file formats" +sidebar_position: 3 +--- + +# Working with different data file formats \ No newline at end of file diff --git a/docs/docs-next/docs/guides/transformation/working-with-large-datasets.md b/docs/docs-next/docs/guides/transformation/working-with-large-datasets.md new file mode 100644 index 0000000000000..a731a28604358 --- /dev/null +++ b/docs/docs-next/docs/guides/transformation/working-with-large-datasets.md @@ -0,0 +1,6 @@ +--- +title: "Working with large datasets" +sidebar_position: 1 +--- + +# Working with large datasets \ No newline at end of file diff --git a/docs/docs-next/sidebars.ts b/docs/docs-next/sidebars.ts index 89e59e0a936e4..16e3e492848de 100644 --- a/docs/docs-next/sidebars.ts +++ b/docs/docs-next/sidebars.ts @@ -45,7 +45,16 @@ const sidebars: SidebarsConfig = { { type: "category", label: "Transformation", - items: ["guides/transformation"] + link: { + type: "doc", + id: "guides/transformation" + }, + items: [ + { + type: 'autogenerated', + dirName: "guides/transformation" + } + ] }, { type: "category", From f9b00e8891432152d1d32cce95fba9a33e6359a8 Mon Sep 17 00:00:00 2001 From: Erin Cochran Date: Mon, 12 Aug 2024 17:29:25 -0400 Subject: [PATCH 3/8] Add Automation --- ...eating-dynamic-pipelines-based-on-external-data.md | 6 ++++++ .../automation/running-pipelines-on-a-schedule.md | 6 ++++++ .../triggering-pipeline-runs-using-events.md | 6 ++++++ docs/docs-next/sidebars.ts | 11 ++++++++++- 4 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 docs/docs-next/docs/guides/automation/creating-dynamic-pipelines-based-on-external-data.md create mode 100644 docs/docs-next/docs/guides/automation/running-pipelines-on-a-schedule.md create mode 100644 docs/docs-next/docs/guides/automation/triggering-pipeline-runs-using-events.md diff --git a/docs/docs-next/docs/guides/automation/creating-dynamic-pipelines-based-on-external-data.md b/docs/docs-next/docs/guides/automation/creating-dynamic-pipelines-based-on-external-data.md new file mode 100644 index 0000000000000..6aa876233cae2 --- /dev/null +++ b/docs/docs-next/docs/guides/automation/creating-dynamic-pipelines-based-on-external-data.md @@ -0,0 +1,6 @@ +--- +title: "Creating dynamic pipelines based on external data" +sidebar_position: 3 +--- + +# Creating dynamic pipelines based on external data \ No newline at end of file diff --git a/docs/docs-next/docs/guides/automation/running-pipelines-on-a-schedule.md b/docs/docs-next/docs/guides/automation/running-pipelines-on-a-schedule.md new file mode 100644 index 0000000000000..c99994d5c9a78 --- /dev/null +++ b/docs/docs-next/docs/guides/automation/running-pipelines-on-a-schedule.md @@ -0,0 +1,6 @@ +--- +title: "Scheduling runs" +sidebar_position: 1 +--- + +# Scheduling runs \ No newline at end of file diff --git a/docs/docs-next/docs/guides/automation/triggering-pipeline-runs-using-events.md b/docs/docs-next/docs/guides/automation/triggering-pipeline-runs-using-events.md new file mode 100644 index 0000000000000..a22694860e3fa --- /dev/null +++ b/docs/docs-next/docs/guides/automation/triggering-pipeline-runs-using-events.md @@ -0,0 +1,6 @@ +--- +title: "Triggering runs using events" +sidebar_position: 2 +--- + +# Triggering pipeline runs using events \ No newline at end of file diff --git a/docs/docs-next/sidebars.ts b/docs/docs-next/sidebars.ts index 16e3e492848de..4ef187e2f92f8 100644 --- a/docs/docs-next/sidebars.ts +++ b/docs/docs-next/sidebars.ts @@ -59,7 +59,16 @@ const sidebars: SidebarsConfig = { { type: "category", label: "Automation", - items: ["guides/automation"] + link: { + type: "doc", + id: "guides/automation" + }, + items: [ + { + type: 'autogenerated', + dirName: "guides/automation" + } + ] }, { type: "category", From 5b6304a3097a0e1bbbd612dc848a45d27e495dcf Mon Sep 17 00:00:00 2001 From: Erin Cochran Date: Mon, 12 Aug 2024 17:29:59 -0400 Subject: [PATCH 4/8] Add external resources --- .../external-systems/adding-python-libraries.md | 6 ++++++ .../connecting-databases-to-dagster.md | 6 ++++++ .../guides/external-systems/using-api-connections.md | 6 ++++++ docs/docs-next/sidebars.ts | 11 ++++++++++- 4 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 docs/docs-next/docs/guides/external-systems/adding-python-libraries.md create mode 100644 docs/docs-next/docs/guides/external-systems/connecting-databases-to-dagster.md create mode 100644 docs/docs-next/docs/guides/external-systems/using-api-connections.md diff --git a/docs/docs-next/docs/guides/external-systems/adding-python-libraries.md b/docs/docs-next/docs/guides/external-systems/adding-python-libraries.md new file mode 100644 index 0000000000000..3519c31b8997d --- /dev/null +++ b/docs/docs-next/docs/guides/external-systems/adding-python-libraries.md @@ -0,0 +1,6 @@ +--- +title: "Adding Python libraries" +sidebar_position: 3 +--- + +# Adding Python libraries \ No newline at end of file diff --git a/docs/docs-next/docs/guides/external-systems/connecting-databases-to-dagster.md b/docs/docs-next/docs/guides/external-systems/connecting-databases-to-dagster.md new file mode 100644 index 0000000000000..acb0431aa503f --- /dev/null +++ b/docs/docs-next/docs/guides/external-systems/connecting-databases-to-dagster.md @@ -0,0 +1,6 @@ +--- +title: "Connecting databases" +sidebar_position: 1 +--- + +# Connecting databases \ No newline at end of file diff --git a/docs/docs-next/docs/guides/external-systems/using-api-connections.md b/docs/docs-next/docs/guides/external-systems/using-api-connections.md new file mode 100644 index 0000000000000..e08505af2c9e4 --- /dev/null +++ b/docs/docs-next/docs/guides/external-systems/using-api-connections.md @@ -0,0 +1,6 @@ +--- +title: "Using API connections" +sidebar_position: 2 +--- + +# Using API connections \ No newline at end of file diff --git a/docs/docs-next/sidebars.ts b/docs/docs-next/sidebars.ts index 4ef187e2f92f8..b3334eb50febb 100644 --- a/docs/docs-next/sidebars.ts +++ b/docs/docs-next/sidebars.ts @@ -73,7 +73,16 @@ const sidebars: SidebarsConfig = { { type: "category", label: "External systems", - items: ["guides/external-systems"] + link: { + type: "doc", + id: "guides/external-systems" + }, + items: [ + { + type: 'autogenerated', + dirName: "guides/external-systems" + } + ] }, { type: "category", From 6bf6e7b2254851fb249322297a6e161f07692dc2 Mon Sep 17 00:00:00 2001 From: Erin Cochran Date: Mon, 12 Aug 2024 17:30:15 -0400 Subject: [PATCH 5/8] Adding Testing --- .../docs/guides/testing/detecting-schema-changes.md | 6 ++++++ .../docs/guides/testing/integration-tests.md | 6 ++++++ docs/docs-next/docs/guides/testing/stopping-runs.md | 6 ++++++ .../testing/testing-assets-with-asset-checks.md | 6 ++++++ .../docs/guides/testing/testing-for-data-freshness.md | 6 ++++++ .../guides/testing/unit-tests-for-assets-and-ops.md | 6 ++++++ docs/docs-next/sidebars.ts | 11 ++++++++++- 7 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 docs/docs-next/docs/guides/testing/detecting-schema-changes.md create mode 100644 docs/docs-next/docs/guides/testing/integration-tests.md create mode 100644 docs/docs-next/docs/guides/testing/stopping-runs.md create mode 100644 docs/docs-next/docs/guides/testing/testing-assets-with-asset-checks.md create mode 100644 docs/docs-next/docs/guides/testing/testing-for-data-freshness.md create mode 100644 docs/docs-next/docs/guides/testing/unit-tests-for-assets-and-ops.md diff --git a/docs/docs-next/docs/guides/testing/detecting-schema-changes.md b/docs/docs-next/docs/guides/testing/detecting-schema-changes.md new file mode 100644 index 0000000000000..69ea31491d141 --- /dev/null +++ b/docs/docs-next/docs/guides/testing/detecting-schema-changes.md @@ -0,0 +1,6 @@ +--- +title: "Detecting schema changes" +sidebar_position: 4 +--- + +# Detecting schema changes \ No newline at end of file diff --git a/docs/docs-next/docs/guides/testing/integration-tests.md b/docs/docs-next/docs/guides/testing/integration-tests.md new file mode 100644 index 0000000000000..f577a725c42d9 --- /dev/null +++ b/docs/docs-next/docs/guides/testing/integration-tests.md @@ -0,0 +1,6 @@ +--- +title: "Integration tests" +sidebar_position: 3 +--- + +# Integration tests \ No newline at end of file diff --git a/docs/docs-next/docs/guides/testing/stopping-runs.md b/docs/docs-next/docs/guides/testing/stopping-runs.md new file mode 100644 index 0000000000000..2bc64d10711e9 --- /dev/null +++ b/docs/docs-next/docs/guides/testing/stopping-runs.md @@ -0,0 +1,6 @@ +--- +title: "Stopping runs" +sidebar_position: 5 +--- + +# Stopping runs \ No newline at end of file diff --git a/docs/docs-next/docs/guides/testing/testing-assets-with-asset-checks.md b/docs/docs-next/docs/guides/testing/testing-assets-with-asset-checks.md new file mode 100644 index 0000000000000..d9736f5a5a778 --- /dev/null +++ b/docs/docs-next/docs/guides/testing/testing-assets-with-asset-checks.md @@ -0,0 +1,6 @@ +--- +title: "Testing assets with Asset Checks" +sidebar_position: 1 +--- + +# Testing assets with Asset Checks \ No newline at end of file diff --git a/docs/docs-next/docs/guides/testing/testing-for-data-freshness.md b/docs/docs-next/docs/guides/testing/testing-for-data-freshness.md new file mode 100644 index 0000000000000..f8b10723f1585 --- /dev/null +++ b/docs/docs-next/docs/guides/testing/testing-for-data-freshness.md @@ -0,0 +1,6 @@ +--- +title: "Testing for data freshness" +sidebar_position: 1 +--- + +# Testing for data freshness \ No newline at end of file diff --git a/docs/docs-next/docs/guides/testing/unit-tests-for-assets-and-ops.md b/docs/docs-next/docs/guides/testing/unit-tests-for-assets-and-ops.md new file mode 100644 index 0000000000000..a7a9c3c1b0e51 --- /dev/null +++ b/docs/docs-next/docs/guides/testing/unit-tests-for-assets-and-ops.md @@ -0,0 +1,6 @@ +--- +title: "Unit tests for assets and ops" +sidebar_position: 2 +--- + +# Unit tests for assets and ops \ No newline at end of file diff --git a/docs/docs-next/sidebars.ts b/docs/docs-next/sidebars.ts index b3334eb50febb..68f25259424c8 100644 --- a/docs/docs-next/sidebars.ts +++ b/docs/docs-next/sidebars.ts @@ -87,7 +87,16 @@ const sidebars: SidebarsConfig = { { type: "category", label: "Testing", - items: ["guides/testing"] + link: { + type: "doc", + id: "guides/testing" + }, + items: [ + { + type: 'autogenerated', + dirName: "guides/testing" + } + ] }, { type: "category", From be7e76d8921b22cfcd37f50c3611b90e5f897a41 Mon Sep 17 00:00:00 2001 From: Erin Cochran Date: Mon, 12 Aug 2024 17:34:57 -0400 Subject: [PATCH 6/8] Add Monitoring --- .../docs/guides/monitoring/custom-logging.md | 6 ++++++ .../docs/guides/monitoring/custom-metrics.md | 6 ++++++ .../docs/guides/monitoring/failed-run-alerts.md | 6 ++++++ docs/docs-next/sidebars.ts | 11 ++++++++++- 4 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 docs/docs-next/docs/guides/monitoring/custom-logging.md create mode 100644 docs/docs-next/docs/guides/monitoring/custom-metrics.md create mode 100644 docs/docs-next/docs/guides/monitoring/failed-run-alerts.md diff --git a/docs/docs-next/docs/guides/monitoring/custom-logging.md b/docs/docs-next/docs/guides/monitoring/custom-logging.md new file mode 100644 index 0000000000000..c44714bea8047 --- /dev/null +++ b/docs/docs-next/docs/guides/monitoring/custom-logging.md @@ -0,0 +1,6 @@ +--- +title: "Setting up custom logging" +sidebar_position: 1 +--- + +# Setting up custom logging \ No newline at end of file diff --git a/docs/docs-next/docs/guides/monitoring/custom-metrics.md b/docs/docs-next/docs/guides/monitoring/custom-metrics.md new file mode 100644 index 0000000000000..7752006d45cb8 --- /dev/null +++ b/docs/docs-next/docs/guides/monitoring/custom-metrics.md @@ -0,0 +1,6 @@ +--- +title: "Using custom metrics in logs" +sidebar_position: 3 +--- + +# Using custom metrics in logs \ No newline at end of file diff --git a/docs/docs-next/docs/guides/monitoring/failed-run-alerts.md b/docs/docs-next/docs/guides/monitoring/failed-run-alerts.md new file mode 100644 index 0000000000000..0047e8a22b6fe --- /dev/null +++ b/docs/docs-next/docs/guides/monitoring/failed-run-alerts.md @@ -0,0 +1,6 @@ +--- +title: "Alerting on failed runs" +sidebar_position: 1 +--- + +# Alerting on failed runs \ No newline at end of file diff --git a/docs/docs-next/sidebars.ts b/docs/docs-next/sidebars.ts index 68f25259424c8..8889b9e21670b 100644 --- a/docs/docs-next/sidebars.ts +++ b/docs/docs-next/sidebars.ts @@ -101,7 +101,16 @@ const sidebars: SidebarsConfig = { { type: "category", label: "Monitoring", - items: ["guides/monitoring"] + link: { + type: "doc", + id: "guides/monitoring" + }, + items: [ + { + type: 'autogenerated', + dirName: "guides/monitoring" + } + ] }, { type: "category", From 3831421cb98d0442172b7b9948efcb4e4fc17354 Mon Sep 17 00:00:00 2001 From: Erin Cochran Date: Mon, 12 Aug 2024 17:55:52 -0400 Subject: [PATCH 7/8] Add Deployment --- docs/docs-next/docs/guides/deployment/aws.md | 6 ++++++ docs/docs-next/docs/guides/deployment/azure.md | 6 ++++++ .../docs/guides/deployment/building-a-data-mesh.md | 6 ++++++ docs/docs-next/docs/guides/deployment/dagster-plus.md | 6 ++++++ docs/docs-next/docs/guides/deployment/gcp.md | 6 ++++++ .../docs/guides/deployment/managing-code-locations.md | 6 ++++++ .../guides/deployment/self-hosted-to-dagster-plus.md | 6 ++++++ docs/docs-next/sidebars.ts | 11 ++++++++++- 8 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 docs/docs-next/docs/guides/deployment/aws.md create mode 100644 docs/docs-next/docs/guides/deployment/azure.md create mode 100644 docs/docs-next/docs/guides/deployment/building-a-data-mesh.md create mode 100644 docs/docs-next/docs/guides/deployment/dagster-plus.md create mode 100644 docs/docs-next/docs/guides/deployment/gcp.md create mode 100644 docs/docs-next/docs/guides/deployment/managing-code-locations.md create mode 100644 docs/docs-next/docs/guides/deployment/self-hosted-to-dagster-plus.md diff --git a/docs/docs-next/docs/guides/deployment/aws.md b/docs/docs-next/docs/guides/deployment/aws.md new file mode 100644 index 0000000000000..98224df2dc07f --- /dev/null +++ b/docs/docs-next/docs/guides/deployment/aws.md @@ -0,0 +1,6 @@ +--- +title: "Deploying to Amazon Web Services" +sidebar_position: 1 +--- + +# Deploying to Amazon Web Services \ No newline at end of file diff --git a/docs/docs-next/docs/guides/deployment/azure.md b/docs/docs-next/docs/guides/deployment/azure.md new file mode 100644 index 0000000000000..cede803ff1987 --- /dev/null +++ b/docs/docs-next/docs/guides/deployment/azure.md @@ -0,0 +1,6 @@ +--- +title: "Deploying to Microsoft Azure" +sidebar_position: 3 +--- + +# Deploying to Microsoft Azure \ No newline at end of file diff --git a/docs/docs-next/docs/guides/deployment/building-a-data-mesh.md b/docs/docs-next/docs/guides/deployment/building-a-data-mesh.md new file mode 100644 index 0000000000000..67b9db5c2e35a --- /dev/null +++ b/docs/docs-next/docs/guides/deployment/building-a-data-mesh.md @@ -0,0 +1,6 @@ +--- +title: "Building a data mesh" +sidebar_position: 6 +--- + +# Building a data mesh \ No newline at end of file diff --git a/docs/docs-next/docs/guides/deployment/dagster-plus.md b/docs/docs-next/docs/guides/deployment/dagster-plus.md new file mode 100644 index 0000000000000..75dd22977284c --- /dev/null +++ b/docs/docs-next/docs/guides/deployment/dagster-plus.md @@ -0,0 +1,6 @@ +--- +title: "Deploying to Dagster+" +sidebar_position: 4 +--- + +# Deploying to Dagster+ \ No newline at end of file diff --git a/docs/docs-next/docs/guides/deployment/gcp.md b/docs/docs-next/docs/guides/deployment/gcp.md new file mode 100644 index 0000000000000..4a87508a3a4e0 --- /dev/null +++ b/docs/docs-next/docs/guides/deployment/gcp.md @@ -0,0 +1,6 @@ +--- +title: "Deploying to Google Cloud Platform" +sidebar_position: 2 +--- + +# Deploying to Google Cloud Platform \ No newline at end of file diff --git a/docs/docs-next/docs/guides/deployment/managing-code-locations.md b/docs/docs-next/docs/guides/deployment/managing-code-locations.md new file mode 100644 index 0000000000000..14891420283fd --- /dev/null +++ b/docs/docs-next/docs/guides/deployment/managing-code-locations.md @@ -0,0 +1,6 @@ +--- +title: "Managing code locations" +sidebar_position: 5 +--- + +# Managing code locations \ No newline at end of file diff --git a/docs/docs-next/docs/guides/deployment/self-hosted-to-dagster-plus.md b/docs/docs-next/docs/guides/deployment/self-hosted-to-dagster-plus.md new file mode 100644 index 0000000000000..2fc360edc98f2 --- /dev/null +++ b/docs/docs-next/docs/guides/deployment/self-hosted-to-dagster-plus.md @@ -0,0 +1,6 @@ +--- +title: "Migrating from self-hosted to Dagster+" +sidebar_position: 7 +--- + +# Migrating from self-hosted to Dagster+ \ No newline at end of file diff --git a/docs/docs-next/sidebars.ts b/docs/docs-next/sidebars.ts index 8889b9e21670b..fb9c0b3ff12b0 100644 --- a/docs/docs-next/sidebars.ts +++ b/docs/docs-next/sidebars.ts @@ -115,7 +115,16 @@ const sidebars: SidebarsConfig = { { type: "category", label: "Deployment", - items: ["guides/deployment"] + link: { + type: "doc", + id: "guides/deployment" + }, + items: [ + { + type: 'autogenerated', + dirName: "guides/deployment" + } + ] } ], }, From b15c08719b36cb48270e4d3d5bf06523c14c47e7 Mon Sep 17 00:00:00 2001 From: Erin Cochran Date: Mon, 12 Aug 2024 17:55:58 -0400 Subject: [PATCH 8/8] Rename file --- ...connecting-databases-to-dagster.md => connecting-databases.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/docs-next/docs/guides/external-systems/{connecting-databases-to-dagster.md => connecting-databases.md} (100%) diff --git a/docs/docs-next/docs/guides/external-systems/connecting-databases-to-dagster.md b/docs/docs-next/docs/guides/external-systems/connecting-databases.md similarity index 100% rename from docs/docs-next/docs/guides/external-systems/connecting-databases-to-dagster.md rename to docs/docs-next/docs/guides/external-systems/connecting-databases.md