Skip to content

Commit

Permalink
fix: dead links, update config schema
Browse files Browse the repository at this point in the history
  • Loading branch information
IncognitoTGT committed Nov 4, 2024
1 parent e8552b3 commit db23ec8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 15 deletions.
9 changes: 0 additions & 9 deletions .config/config-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,6 @@
},
"type": "object"
},
"huDb": {
"description": "HU authentication database URL. Leave `undefined` to disable HU authentication. This is not for the end user and is meant for compatibility with https://holyubofficial.net/'s authentication backend",
"type": "string"
},
"huUrl": {
"default": "https://holyubofficial.net",
"description": "URL for the HU instance, if integrating with one",
"type": "string"
},
"oauth": {
"additionalProperties": false,
"description": "OAuth configuration. Leave `undefined` to disable OAuth signups.",
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
</a>
</p>
<p align="center">
<a href="https://st.spaceness.one/">Production demo instance</a>
<a href="https://st.spaceness.xyz/">Production demo instance (CURRENTLY DOWN)</a>
<br>

See [documentation](https://stardust.spaceness.one/docs) for setup and usage

See [documentation](https://stardust-docs.vercel.app/docs) for setup and usage
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export async function generateMetadata(): Promise<Metadata> {
title: "Stardust",
description: "Stardust is the platform for streaming isolated desktop containers.",
type: "website",
url: "https://stardust.spaceness.one",
url: "https://stardust-docs.vercel.app",
}
: undefined,
};
Expand Down
4 changes: 2 additions & 2 deletions src/components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export default function Navigation({
<Tooltip>
<TooltipTrigger asChild>
<Button variant="outline" size="icon" asChild>
<a href="https://stardust.spaceness.one/docs" target="_blank" rel="noreferrer nopener">
<a href="https://stardust-docs.vercel.app/docs" target="_blank" rel="noreferrer nopener">
<Book className="size-5" />
</a>
</Button>
Expand All @@ -189,7 +189,7 @@ export default function Navigation({
<Tooltip>
<TooltipTrigger asChild>
<Button variant="outline" size="icon" asChild>
<a href="https://spaceness.one/" target="_blank" rel="noreferrer nopener">
<a href="https://stardust-docs.vercel.app/" target="_blank" rel="noreferrer nopener">
<Globe className="size-5" />
</a>
</Button>
Expand Down

0 comments on commit db23ec8

Please sign in to comment.