update docs links

This commit is contained in:
miloschwartz 2025-08-01 22:34:02 -07:00
parent c473c2fa81
commit 84268e484d
No known key found for this signature in database
16 changed files with 19 additions and 25 deletions

View file

@ -88,7 +88,7 @@ export const WelcomeQuickStart = ({
To learn how to use Newt, including more
installation methods, visit the{" "}
<a
href="https://docs.fossorial.io"
href="https://docs.digpangolin.com/manage/sites/install-site"
className="underline"
>
docs

View file

@ -30,12 +30,6 @@ export class Config {
throw new Error(`Invalid configuration file: ${errors}`);
}
if (process.env.APP_BASE_DOMAIN) {
console.log(
"WARNING: You're using deprecated environment variables. Transition to the configuration file. https://docs.fossorial.io/"
);
}
if (
// @ts-ignore
parsedConfig.users ||

View file

@ -287,7 +287,7 @@ export function readConfigFile() {
if (!environment) {
throw new Error(
"No configuration file found. Please create one. https://docs.fossorial.io/"
"No configuration file found. Please create one. https://docs.digpangolin.com/self-host/advanced/config-file"
);
}

View file

@ -78,7 +78,7 @@ export default async function migration() {
fs.writeFileSync(filePath, updatedYaml, "utf8");
} catch (e) {
console.log(
`Failed to add resource_session_request_param to config. Please add it manually. https://docs.fossorial.io/Pangolin/Configuration/config`
`Failed to add resource_session_request_param to config. Please add it manually. https://docs.digpangolin.com/self-host/advanced/config-file`
);
trx.rollback();
return;

View file

@ -63,7 +63,7 @@ export default async function migration() {
console.log(`Added new config option: resource_access_token_headers`);
} catch (e) {
console.log(
`Unable to add new config option: resource_access_token_headers. Please add it manually. https://docs.fossorial.io/Pangolin/Configuration/config`
`Unable to add new config option: resource_access_token_headers. Please add it manually. https://docs.digpangolin.com/self-host/advanced/config-file`
);
console.error(e);
}