Skip to content

Commit 4fa62fb

Browse files
authored
Merge pull request #299 from stackql/feature/provider-docs
moved datadog to microsite
2 parents 99946c9 + 73e4927 commit 4fa62fb

File tree

6 files changed

+3
-5
lines changed

6 files changed

+3
-5
lines changed

.github/workflows/build-docs.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ jobs:
9999
godaddy
100100
pagerduty
101101
homebrew
102-
datadog
103102
)
104103
for i in "${array[@]}"
105104
do

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ This repository contains documentation for StackQL providers, which is published
1919
| Netlify Deploy Godaddy | [![Netlify Status](https://api.netlify.com/api/v1/badges/8232458e-8e4f-47f2-81bf-bd4aad8b25d6/deploy-status)](https://app.netlify.com/sites/stackql-godaddy-docs/deploys) | [godaddy-docs.stackql.io](https://godaddy-docs.stackql.io)<br/>[godaddy.stackql.io](https://godaddy.stackql.io) |
2020
| Netlify Deploy PagerDuty | [![Netlify Status](https://api.netlify.com/api/v1/badges/76c8752a-32d8-48e2-81ad-29b9e8f53edd/deploy-status)](https://app.netlify.com/sites/stackql-pagerduty-docs/deploys) | [pagerduty-docs.stackql.io](https://pagerduty-docs.stackql.io)<br/>[pagerduty.stackql.io](https://pagerduty.stackql.io) |
2121
| Netlify Deploy Homebrew | [![Netlify Status](https://api.netlify.com/api/v1/badges/2343d34d-5061-4d83-98e6-475fb2150c94/deploy-status)](https://app.netlify.com/sites/stackql-homebrew-docs/deploys) | [homebrew-docs.stackql.io](https://homebrew-docs.stackql.io)<br/>[homebrew.stackql.io](https://homebrew.stackql.io) |
22-
| Netlify Deploy Datadog | [![Netlify Status](https://api.netlify.com/api/v1/badges/9e76122d-09bd-4938-a50f-3b4196e94f0c/deploy-status)](https://app.netlify.com/sites/stackql-datadog-docs/deploys) | [datadog-docs.stackql.io](https://datadog-docs.stackql.io)<br/>[datadog.stackql.io](https://datadog.stackql.io) |
2322
| Netlify Deploy Azure ISV | [![Netlify Status](https://api.netlify.com/api/v1/badges/35fc840c-0494-462f-9b3f-cbd3418a3c78/deploy-status)](https://app.netlify.com/sites/stackql-azure-isv-docs/deploys) | [azure-isv-docs.stackql.io](https://azure-isv-docs.stackql.io)<br/>[azure-isv.stackql.io](https://azure-isv.stackql.io) |
2423
| Netlify Deploy Azure Stack | [![Netlify Status](https://api.netlify.com/api/v1/badges/53abcb20-0194-41dd-b466-4d933cfffcad/deploy-status)](https://app.netlify.com/sites/stackql-azure-stack-docs/deploys) | [azure-stack-docs.stackql.io](https://azure-stack-docs.stackql.io)<br/>[azure-stack.stackql.io](https://azure-stack.stackql.io) |
2524
| Netlify Deploy OpenAI | [![Netlify Status](https://api.netlify.com/api/v1/badges/6df5743b-8c5d-4949-866e-eda4ca3f74d0/deploy-status)](https://app.netlify.com/sites/stackql-openai-docs/deploys) | [openai-docs.stackql.io](https://openai-docs.stackql.io)<br/>[openai.stackql.io](https://openai.stackql.io) |

ci-scripts/get-providers-to-deploy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const allProviders = [
3030
'vercel',
3131
'godaddy',
3232
'pagerduty',
33-
'datadog',
33+
// 'datadog',
3434
'homebrew',
3535
// 'snowflake',
3636
rootName];

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"start:vercel": "export REGISTRY=vercel && docusaurus start",
2121
"start:godaddy": "export REGISTRY=godaddy && docusaurus start",
2222
"start:pagerduty": "export REGISTRY=pagerduty && docusaurus start",
23-
"start:datadog": "export REGISTRY=datadog && docusaurus start",
2423
"start:homebrew": "export REGISTRY=homebrew && docusaurus start",
2524
"build:root": "docusaurus build",
2625
"build:aws": "export REGISTRY=aws && docusaurus build",
@@ -39,7 +38,6 @@
3938
"build:godaddy": "export REGISTRY=godaddy && docusaurus build",
4039
"build:pagerduty": "export REGISTRY=pagerduty && docusaurus build",
4140
"build:homebrew": "export REGISTRY=homebrew && docusaurus build",
42-
"build:datadog": "export REGISTRY=datadog && docusaurus build",
4341
"swizzle": "docusaurus swizzle",
4442
"deploy": "docusaurus deploy",
4543
"clear": "docusaurus clear",

sidebars.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ const getProviderSiteUrl = (name) =>{
5555
'databricks_account',
5656
'digitalocean',
5757
'linode',
58+
'datadog',
5859
].includes(name)) {
5960
return `https://${name.replace('_', '-')}-provider.stackql.io/`
6061
} else {

src/configs/providers.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ export const getProviderSiteUrl = (name: string) =>{
4545
'databricks_account',
4646
'digitalocean',
4747
'linode',
48+
'datadog',
4849
].includes(name)) {
4950
return `https://${name.replace('_', '-')}-provider.stackql.io/`
5051
} else {

0 commit comments

Comments
 (0)