This commit is contained in:
Owen
2025-10-04 18:36:44 -07:00
parent 3123f858bb
commit c2c907852d
320 changed files with 35785 additions and 2984 deletions

View File

@@ -1,6 +1,7 @@
export type Env = {
app: {
environment: string;
sandbox_mode: boolean;
version: string;
dashboardUrl: string;
};
@@ -12,6 +13,8 @@ export type Env = {
resourceSessionRequestParam: string;
resourceAccessTokenHeadersId: string;
resourceAccessTokenHeadersToken: string;
reoClientId?: string;
maxmind_db_path?: string;
};
email: {
emailEnabled: boolean;
@@ -25,5 +28,36 @@ export type Env = {
disableBasicWireguardSites: boolean;
enableClients: boolean;
hideSupporterKey: boolean;
}
},
branding: {
appName?: string;
background_image_path?: string;
logo?: {
lightPath?: string;
darkPath?: string;
authPage?: {
width?: number;
height?: number;
};
navbar?: {
width?: number;
height?: number;
}
},
loginPage?: {
titleText?: string;
subtitleText?: string;
},
signupPage?: {
titleText?: string;
subtitleText?: string;
},
resourceAuthPage?: {
showLogo?: boolean;
hidePoweredBy?: boolean;
titleText?: string;
subtitleText?: string;
},
footer?: string;
};
};

View File

@@ -0,0 +1,13 @@
/*
* This file is part of a proprietary work.
*
* Copyright (c) 2025 Fossorial, Inc.
* All rights reserved.
*
* This file is licensed under the Fossorial Commercial License.
* You may not use this file except in compliance with the License.
* Unauthorized use, copying, modification, or distribution is strictly prohibited.
*
* This file is not licensed under the AGPLv3.
*/