Skip to content

Commit 8fc90ea

Browse files
committed
website updates
1 parent 5d45479 commit 8fc90ea

File tree

24 files changed

+175
-150
lines changed

24 files changed

+175
-150
lines changed

website/docs/cli-reference/init.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ stackql-deploy init my-stack
6969
```
7070
:::tip
7171

72-
`init` will create your project structure including the stack directory including the `stackql_manifest.yml` and `README.md` files, and a `resources` directory with a sample StackQL resource query file (`.iql` file). You can modify a project to use whichever providers are available in the [StackQL Provider Registry](https://registry.stackql.io/).
72+
`init` will create your project structure including the stack directory including the `stackql_manifest.yml` and `README.md` files, and a `resources` directory with a sample StackQL resource query file (`.iql` file). You can modify a project to use whichever providers are available in the [StackQL Provider Registry](https://stackql.io/providers).
7373

7474
:::
7575

website/docs/manifest_fields/resources/auth.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ stackql-deploy upgrade
1717

1818
<LeftAlignedTable type="object" required={false} />
1919

20-
The `auth` object will depend upon the provider the resource belongs to, consult the provider documentation in the [StackQL Provider Registry Docs](https://stackql.io/registry).
20+
The `auth` object will depend upon the provider the resource belongs to, consult the provider documentation in the [StackQL Provider Registry Docs](https://stackql.io/providers).
2121

2222
### Example Usage
2323

website/docs/template-library/aws/vpc-and-ec2-instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ AND region = '{{ region }}';
354354

355355
The complete code for this example stack is available [__here__](https://github.com/stackql/stackql-deploy/tree/main/examples/aws/aws-stack). For more information on how to use StackQL and StackQL Deploy, visit:
356356

357-
- [`aws` provider docs](https://stackql.io/registry/aws)
357+
- [`aws` provider docs](https://stackql.io/providers/aws)
358358
- [`stackql`](https://github.com/stackql)
359359
- [`stackql-deploy` PyPI home page](https://pypi.org/project/stackql-deploy/)
360360
- [`stackql-deploy` GitHub repo](https://github.com/stackql/stackql-deploy)

website/docs/template-library/azure/simple-vnet-and-vm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ AND subnetName = '{{ subnet_name }}'
299299

300300
The complete code for this example stack is available [__here__](https://github.com/stackql/stackql-deploy/tree/main/examples/azure/azure-stack). For more information on how to use StackQL and StackQL Deploy, visit:
301301

302-
- [`azure` provider docs](https://stackql.io/registry/azure)
302+
- [`azure` provider docs](https://stackql.io/providers/azure)
303303
- [`stackql`](https://github.com/stackql)
304304
- [`stackql-deploy` PyPI home page](https://pypi.org/project/stackql-deploy/)
305305
- [`stackql-deploy` GitHub repo](https://github.com/stackql/stackql-deploy)

website/docs/template-library/google/k8s-the-hard-way.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ AND firewall = '{{ fw_name }}'
424424

425425
The complete code for this example stack is available [__here__](https://github.com/stackql/stackql-deploy/tree/main/examples/k8s-the-hard-way). For more information on how to use StackQL and StackQL Deploy, visit:
426426

427-
- [`google` provider docs](https://stackql.io/registry/google)
427+
- [`google` provider docs](https://stackql.io/providers/google)
428428
- [`stackql`](https://github.com/stackql)
429429
- [`stackql-deploy` PyPI home page](https://pypi.org/project/stackql-deploy/)
430430
- [`stackql-deploy` GitHub repo](https://github.com/stackql/stackql-deploy)

website/docusaurus.config.js

Lines changed: 102 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,84 @@
66

77
import {themes as prismThemes} from 'prism-react-renderer';
88

9+
const providerDropDownListItems = [
10+
{
11+
label: 'AWS',
12+
to: '/providers/aws',
13+
},
14+
{
15+
label: 'Azure',
16+
to: '/providers/azure',
17+
},
18+
{
19+
label: 'Google',
20+
to: '/providers/google',
21+
},
22+
{
23+
label: 'Databricks',
24+
to: '/providers/databricks',
25+
},
26+
{
27+
label: 'Snowflake',
28+
to: '/providers/snowflake',
29+
},
30+
{
31+
label: 'Confluent',
32+
to: '/providers/confluent',
33+
},
34+
{
35+
label: 'Okta',
36+
to: '/providers/okta',
37+
},
38+
{
39+
label: 'GitHub',
40+
to: '/providers/github',
41+
},
42+
{
43+
label: 'OpenAI',
44+
to: '/providers/openai',
45+
},
46+
{
47+
label: '... More',
48+
to: '/providers',
49+
},
50+
];
51+
52+
const footerStackQLItems = [
53+
{
54+
label: 'Documentation',
55+
to: '/stackqldocs',
56+
},
57+
{
58+
label: 'Install',
59+
to: '/install',
60+
},
61+
{
62+
label: 'Contact us',
63+
to: '/contact-us',
64+
},
65+
];
66+
67+
const footerMoreItems = [
68+
{
69+
label: 'Providers',
70+
to: '/providers',
71+
},
72+
{
73+
label: 'stackql-deploy',
74+
to: '/stackql-deploy',
75+
},
76+
{
77+
label: 'Blog',
78+
to: '/blog',
79+
},
80+
{
81+
label: 'Tutorials',
82+
to: '/tutorials',
83+
},
84+
];
85+
86+
987
/** @type {import('@docusaurus/types').Config} */
1088
const config = {
1189
title: 'StackQL Deploy',
@@ -64,7 +142,7 @@ const config = {
64142
({
65143
image: 'img/stackql-cover.png',
66144
navbar: {
67-
logo: {
145+
logo: {
68146
alt: 'StackQL Deploy',
69147
href: '/',
70148
src: 'img/stackql-deploy-logo.svg',
@@ -77,61 +155,38 @@ const config = {
77155
// position: 'left',
78156
// label: 'Deploy Docs',
79157
// },
158+
{
159+
to: '/install',
160+
position: 'left',
161+
label: 'Install',
162+
},
80163
{
81164
to: '/stackqldocs',
82165
position: 'left',
83166
label: 'StackQL Docs',
84167
},
85168
{
86-
to: '/registry',
169+
to: '/providers',
87170
type: 'dropdown',
88-
label: 'StackQL Providers',
171+
label: 'Providers',
89172
position: 'left',
90-
items: [
91-
{
92-
label: 'AWS',
93-
to: '/registry/aws',
94-
},
95-
{
96-
label: 'Azure',
97-
to: '/registry/azure',
98-
},
99-
{
100-
label: 'Google',
101-
to: '/registry/google',
102-
},
103-
{
104-
label: 'GitHub',
105-
to: '/registry/github',
106-
},
107-
{
108-
label: 'Kubernetes',
109-
to: '/registry/k8s',
110-
},
111-
{
112-
label: 'Okta',
113-
to: '/registry/okta',
114-
},
115-
{
116-
label: 'DigitalOcean',
117-
to: '/registry/digitalocean',
118-
},
119-
{
120-
label: 'Linode',
121-
to: '/registry/linode',
122-
},
123-
{
124-
label: '... More',
125-
to: '/registry',
126-
},
127-
]
173+
items: providerDropDownListItems,
128174
},
129175
{
130-
to: '/downloads',
176+
type: 'dropdown',
177+
label: 'More',
131178
position: 'left',
132-
label: 'Downloads',
179+
items: [
180+
{
181+
to: '/blog',
182+
label: 'Blog',
183+
},
184+
{
185+
to: '/tutorials',
186+
label: 'Tutorials',
187+
},
188+
],
133189
},
134-
// {to: '/blog', label: 'Blog', position: 'left'},
135190
{
136191
href: 'https://github.com/stackql/stackql',
137192
position: 'right',
@@ -144,48 +199,18 @@ const config = {
144199
style: 'dark',
145200
logo: {
146201
alt: 'StackQL',
147-
href: 'https://stackql.io/',
202+
href: '/',
148203
src: 'img/stackql-deploy-logo.svg',
149204
srcDark: 'img/stackql-deploy-logo-white.svg',
150205
},
151206
links: [
152207
{
153208
title: 'StackQL',
154-
items: [
155-
{
156-
label: 'Home',
157-
to: '/home',
158-
},
159-
{
160-
label: 'Features',
161-
to: '/features',
162-
},
163-
{
164-
label: 'Downloads',
165-
to: '/downloads',
166-
},
167-
{
168-
label: 'Contact us',
169-
href: '/contact-us',
170-
},
171-
],
209+
items: footerStackQLItems,
172210
},
173211
{
174212
title: 'More',
175-
items: [
176-
{
177-
label: 'StackQL Docs',
178-
to: '/stackqldocs',
179-
},
180-
{
181-
label: 'Providers',
182-
to: '/registry',
183-
},
184-
{
185-
label: 'Blog',
186-
to: '/blog',
187-
},
188-
],
213+
items: footerMoreItems,
189214
},
190215
],
191216
copyright: ${new Date().getFullYear()} StackQL Studios`,
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import React from 'react';
22
import Head from '@docusaurus/Head';
33

4-
export default function Home() {
4+
export default function Install() {
55
return (
66
<Head>
7-
<meta http-equiv="refresh" content="0;URL='https://stackql.io/'" />
7+
<meta http-equiv="refresh" content="0;URL='https://stackql.io/install'" />
88
</Head>
99
);
1010
};

website/src/pages/registry/aws.js renamed to website/src/pages/providers/aws.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Head from '@docusaurus/Head';
44
export default function Registry() {
55
return (
66
<Head>
7-
<meta http-equiv="refresh" content="0;URL='https://registry.stackql.io/aws'" />
7+
<meta http-equiv="refresh" content="0;URL='https://stackql.io/providers/aws'" />
88
</Head>
99
);
1010
};

website/src/pages/registry/azure.js renamed to website/src/pages/providers/azure.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Head from '@docusaurus/Head';
44
export default function Registry() {
55
return (
66
<Head>
7-
<meta http-equiv="refresh" content="0;URL='https://registry.stackql.io/azure'" />
7+
<meta http-equiv="refresh" content="0;URL='https://stackql.io/providers/azure'" />
88
</Head>
99
);
1010
};
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React from 'react';
2+
import Head from '@docusaurus/Head';
3+
4+
export default function Registry() {
5+
return (
6+
<Head>
7+
<meta http-equiv="refresh" content="0;URL='https://stackql.io/providers/confluent'" />
8+
</Head>
9+
);
10+
};

0 commit comments

Comments
 (0)