Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions .github/workflows/build-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,6 @@ jobs:
openai
anthropic
k8s
sumologic
vercel
homebrew
)
for i in "${array[@]}"
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ This repository contains documentation for StackQL providers, which is published
| Netlify Deploy Base | [![Netlify Status](https://api.netlify.com/api/v1/badges/75f838a9-79ea-41dc-96f9-a40dff50cfca/deploy-status)](https://app.netlify.com/sites/stackql-registry-docs/deploys) | [registry.stackql.io](https://registry.stackql.io) |
| Netlify Deploy GitHub | [![Netlify Status](https://api.netlify.com/api/v1/badges/625d7d38-37a9-4224-a9c8-6ee58141b109/deploy-status)](https://app.netlify.com/sites/stackql-github-docs/deploys) | [github-docs.stackql.io](https://github-docs.stackql.io)<br/>[github.stackql.io](https://github.stackql.io) |
| Netlify Deploy K8S | [![Netlify Status](https://api.netlify.com/api/v1/badges/d11ea6c5-7a43-42d5-ac76-555112295b9b/deploy-status)](https://app.netlify.com/sites/stackql-k8s-docs/deploys) | [k8s-docs.stackql.io](https://k8s-docs.stackql.io)<br/>[k8s.stackql.io](https://k8s.stackql.io) |
| Netlify Deploy Sumologic | [![Netlify Status](https://api.netlify.com/api/v1/badges/6c864774-8494-41be-8e2c-441b6d1e368c/deploy-status)](https://app.netlify.com/sites/stackql-sumologic-docs/deploys) | [sumologic-docs.stackql.io](https://sumologic-docs.stackql.io)<br/>[sumologic.stackql.io](https://sumologic.stackql.io) |
| Netlify Deploy Vercel | [![Netlify Status](https://api.netlify.com/api/v1/badges/91cc31b7-0c25-443f-bb2f-71921ef7084e/deploy-status)](https://app.netlify.com/sites/stackql-vercel-docs/deploys) | [vercel-docs.stackql.io](https://vercel-docs.stackql.io)<br/>[vercel.stackql.io](https://vercel.stackql.io) |
| 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) |
| 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) |
| Netlify Deploy Anthropic | [![Netlify Status](https://api.netlify.com/api/v1/badges/114c5a2a-9b76-4941-a0e8-3669ee7d2016/deploy-status)](https://app.netlify.com/sites/stackql-anthropic-docs/deploys) | [anthropic-docs.stackql.io](https://anthropic-docs.stackql.io)<br/>[anthropic.stackql.io](https://anthropic.stackql.io) |
Expand Down
4 changes: 2 additions & 2 deletions ci-scripts/get-providers-to-deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const allProviders = [
// 'linode',
// 'netlify',
// 'okta',
'sumologic',
'vercel',
// 'sumologic',
// 'vercel',
// 'godaddy',
// 'pagerduty',
// 'datadog',
Expand Down
4 changes: 0 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,13 @@
"start:openai": "export REGISTRY=openai && docusaurus start",
"start:anthropic": "export REGISTRY=anthropic && docusaurus start",
"start:k8s": "export REGISTRY=k8s && docusaurus start",
"start:sumologic": "export REGISTRY=sumologic && docusaurus start",
"start:vercel": "export REGISTRY=vercel && docusaurus start",
"start:homebrew": "export REGISTRY=homebrew && docusaurus start",
"build:root": "docusaurus build",
"build:github": "export REGISTRY=github && docusaurus build",
"build:confluent": "export REGISTRY=confluent && docusaurus build",
"build:openai": "export REGISTRY=openai && docusaurus build",
"build:anthropic": "export REGISTRY=anthropic && docusaurus build",
"build:k8s": "export REGISTRY=k8s && docusaurus build",
"build:sumologic": "export REGISTRY=sumologic && docusaurus build",
"build:vercel": "export REGISTRY=vercel && docusaurus build",
"build:homebrew": "export REGISTRY=homebrew && docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
Expand Down
4 changes: 3 additions & 1 deletion sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ const getProviderSiteUrl = (name) =>{
'azure_extras',
'azure_isv',
'azure_stack',
'aws'
'aws',
'sumologic',
'vercel',
].includes(name)) {
return `https://${name.replace('_', '-')}-provider.stackql.io/`
} else {
Expand Down
4 changes: 3 additions & 1 deletion src/configs/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ export const getProviderSiteUrl = (name: string) =>{
'azure_extras',
'azure_isv',
'azure_stack',
'aws',
'aws',
'sumologic',
'vercel',
].includes(name)) {
return `https://${name.replace('_', '-')}-provider.stackql.io/`
} else {
Expand Down