Skip to content

Commit 0c38fa7

Browse files
authored
Merge pull request #306 from stackql/feature/provider-docs
moved anthropic and openai to microsites
2 parents 382b9ef + f06059c commit 0c38fa7

File tree

6 files changed

+8
-12
lines changed

6 files changed

+8
-12
lines changed

.github/workflows/build-docs.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,6 @@ jobs:
8585
array=(
8686
confluent
8787
github
88-
openai
89-
anthropic
9088
)
9189
for i in "${array[@]}"
9290
do

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ This repository contains documentation for StackQL providers, which is published
99
| GitHub Actions Build | [![GitHub Actions](https://github.com/stackql/stackql-registry-docs/actions/workflows/build-docs.yaml/badge.svg?branch=main)](https://github.com/stackql/stackql-registry-docs/actions/workflows/build-docs.yaml) | [stackql-registry-docs/actions](https://github.com/stackql/stackql-registry-docs/actions) |
1010
| 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) |
1111
| 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) |
12-
| 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) |
13-
| 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) |
1412
| Netlify Deploy Confluent | [![Netlify Status](https://api.netlify.com/api/v1/badges/63149c2f-6c3d-43f1-be38-80c55c223ac0/deploy-status)](https://app.netlify.com/sites/stackql-confluent-docs/deploys) | [confluent-docs.stackql.io](https://confluent-docs.stackql.io)<br/>[confluent.stackql.io](https://confluent.stackql.io) |
1513

1614
## Adding Docs for a New Provider

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const allProviders = [
1818
'confluent',
1919
// 'databricks_account',
2020
// 'databricks_workspace',
21-
'openai',
22-
'anthropic',
21+
// 'openai',
22+
// 'anthropic',
2323
// 'google',
2424
// 'googleadmin',
2525
// 'k8s',

package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,9 @@
77
"start": "docusaurus start",
88
"start:github": "export REGISTRY=github && docusaurus start",
99
"start:confluent": "export REGISTRY=confluent && docusaurus start",
10-
"start:openai": "export REGISTRY=openai && docusaurus start",
11-
"start:anthropic": "export REGISTRY=anthropic && docusaurus start",
1210
"build:root": "docusaurus build",
1311
"build:github": "export REGISTRY=github && docusaurus build",
1412
"build:confluent": "export REGISTRY=confluent && docusaurus build",
15-
"build:openai": "export REGISTRY=openai && docusaurus build",
16-
"build:anthropic": "export REGISTRY=anthropic && docusaurus build",
1713
"swizzle": "docusaurus swizzle",
1814
"deploy": "docusaurus deploy",
1915
"clear": "docusaurus clear",

sidebars.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ const getProviderSiteUrl = (name) =>{
6767
'sumologic',
6868
'vercel',
6969
'k8s',
70-
'homebrew',
70+
'homebrew',
71+
'openai',
72+
'anthropic'
7173
].includes(name)) {
7274
return `https://${name.replace('_', '-')}-provider.stackql.io/`
7375
} else {

src/configs/providers.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ export const getProviderSiteUrl = (name: string) =>{
5757
'sumologic',
5858
'vercel',
5959
'k8s',
60-
'homebrew',
60+
'homebrew',
61+
'openai',
62+
'anthropic'
6163
].includes(name)) {
6264
return `https://${name.replace('_', '-')}-provider.stackql.io/`
6365
} else {

0 commit comments

Comments
 (0)