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: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### Prerequisities

a. Download `stackql` locally (see [downloads](https://stackql.io/downloads)).
a. Download `stackql` locally (see [downloads](https://stackql.io/install)).
b. Create a least priveleged role for your `stackql` service account.
c. Create a [Snowflake PAT](https://docs.snowflake.com/developer-guide/snowflake-rest-api/authentication#using-a-programmatic-access-token-pat) for the role created in (b).
d. Export the following environment variable:
Expand Down
72 changes: 43 additions & 29 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,69 +72,83 @@ const config = {
navbar: {
logo: {
alt: 'StackQL Registry',
href: 'https://stackql.io/',
href: '/providers',
src: 'img/stackql-registry-logo.svg',
srcDark: 'img/stackql-registry-logo-white.svg',
},
items: [
{
to: '/stackqldocs',
to: '/install',
position: 'left',
label: 'StackQL Docs',
label: 'Install',
},
{
to: '/deploy',
position: 'left',
label: 'stackql-deploy',
},
{
to: '/registry',
to: '/providers',
type: 'dropdown',
label: 'StackQL Providers',
position: 'left',
items: [
{
label: 'AWS',
to: '/registry/aws',
to: '/providers/aws',
},
{
label: 'Azure',
to: '/registry/azure',
to: '/providers/azure',
},
{
label: 'Google',
to: '/registry/google',
to: '/providers/google',
},
{
label: 'GitHub',
to: '/registry/github',
to: '/providers/github',
},
{
label: 'Kubernetes',
to: '/registry/k8s',
to: '/providers/k8s',
},
{
label: 'Okta',
to: '/registry/okta',
to: '/providers/okta',
},
{
label: 'DigitalOcean',
to: '/registry/digitalocean',
to: '/providers/digitalocean',
},
{
label: 'Linode',
to: '/registry/linode',
to: '/providers/linode',
},
{
label: '... More',
to: '/registry',
},
to: '/providers',
},
]
},
{
to: '/downloads',
type: 'dropdown',
label: 'More',
position: 'left',
label: 'Downloads',
items: [
{
to: '/stackqldocs',
label: 'StackQL Docs',
},
{
to: '/blog',
label: 'Blog',
},
{
to: '/tutorials',
label: 'Tutorials',
},
],
},
{
href: 'https://github.com/stackql/stackql',
Expand All @@ -148,7 +162,7 @@ const config = {
style: 'dark',
logo: {
alt: 'StackQL',
href: 'https://stackql.io/',
href: 'https://stackql.io/providers',
src: 'img/stackql-registry-logo.svg',
srcDark: 'img/stackql-registry-logo-white.svg',
},
Expand All @@ -157,16 +171,12 @@ const config = {
title: 'StackQL',
items: [
{
label: 'Home',
to: '/home',
},
{
label: 'Features',
to: '/features',
label: 'Documentation',
to: '/stackqldocs',
},
{
label: 'Downloads',
to: '/downloads',
label: 'Install',
to: '/install',
},
{
label: 'Contact us',
Expand All @@ -178,17 +188,21 @@ const config = {
title: 'More',
items: [
{
label: 'StackQL Docs',
to: '/stackqldocs',
label: 'Providers',
to: '/providers',
},
{
label: 'Providers',
to: '/registry',
label: 'StackQL Deploy',
to: '/deploy',
},
{
label: 'Blog',
to: '/blog',
},
{
label: 'Tutorials',
to: '/tutorials',
},
],
},
],
Expand Down
2 changes: 1 addition & 1 deletion website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const providerTitle = config.title.replace(/^StackQL /, '').replace(/ Provider$/
{
type: 'link',
label: 'All Providers',
href: '/registry',
href: '/providers',
},
{
type: 'category',
Expand Down
18 changes: 9 additions & 9 deletions website/src/pages/downloads.js → website/src/pages/install.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react';
import Head from '@docusaurus/Head';

export default function Downloads() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://stackql.io/downloads'" />
</Head>
);
import React from 'react';
import Head from '@docusaurus/Head';
export default function Install() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://stackql.io/install'" />
</Head>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Head from '@docusaurus/Head';
export default function Registry() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://registry.stackql.io/aws'" />
<meta http-equiv="refresh" content="0;URL='https://stackql.io/providers/aws'" />
</Head>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Head from '@docusaurus/Head';
export default function Registry() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://registry.stackql.io/azure'" />
<meta http-equiv="refresh" content="0;URL='https://stackql.io/providers/azure'" />
</Head>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Head from '@docusaurus/Head';
export default function Registry() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://registry.stackql.io/digitalocean'" />
<meta http-equiv="refresh" content="0;URL='https://stackql.io/providers/digitalocean'" />
</Head>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Head from '@docusaurus/Head';
export default function Registry() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://registry.stackql.io/github'" />
<meta http-equiv="refresh" content="0;URL='https://stackql.io/providers/github'" />
</Head>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Head from '@docusaurus/Head';
export default function Registry() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://registry.stackql.io/google'" />
<meta http-equiv="refresh" content="0;URL='https://stackql.io/providers/google'" />
</Head>
);
};
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react';
import Head from '@docusaurus/Head';

export default function Features() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://stackql.io/features'" />
</Head>
);
import React from 'react';
import Head from '@docusaurus/Head';
export default function Providers() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://stackql.io/providers'" />
</Head>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Head from '@docusaurus/Head';
export default function Registry() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://registry.stackql.io/k8s'" />
<meta http-equiv="refresh" content="0;URL='https://stackql.io/providers/k8s'" />
</Head>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Head from '@docusaurus/Head';
export default function Registry() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://registry.stackql.io/linode'" />
<meta http-equiv="refresh" content="0;URL='https://stackql.io/providers/linode'" />
</Head>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Head from '@docusaurus/Head';
export default function Registry() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://registry.stackql.io/okta'" />
<meta http-equiv="refresh" content="0;URL='https://stackql.io/providers/okta'" />
</Head>
);
};
10 changes: 0 additions & 10 deletions website/src/pages/registry/awscc.js

This file was deleted.

10 changes: 0 additions & 10 deletions website/src/pages/registry/index.js

This file was deleted.

18 changes: 9 additions & 9 deletions website/src/pages/home.js → website/src/pages/tutorials.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react';
import Head from '@docusaurus/Head';

export default function Home() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://stackql.io/'" />
</Head>
);
import React from 'react';
import Head from '@docusaurus/Head';
export default function Tutorials() {
return (
<Head>
<meta http-equiv="refresh" content="0;URL='https://stackql.io/tutorials'" />
</Head>
);
};
Loading