chore(cli): add guest dashboard env variable
This commit is contained in:
parent
9b9541cee7
commit
fd6c5afe2c
2 changed files with 11 additions and 1 deletions
|
@ -32,6 +32,7 @@ type EnvKeys =
|
||||||
| 'REDIS_PASSWORD'
|
| 'REDIS_PASSWORD'
|
||||||
| 'LOCAL_DOMAIN'
|
| 'LOCAL_DOMAIN'
|
||||||
| 'DEMO_MODE'
|
| 'DEMO_MODE'
|
||||||
|
| 'GUEST_DASHBOARD'
|
||||||
| 'TIPI_GID'
|
| 'TIPI_GID'
|
||||||
| 'TIPI_UID'
|
| 'TIPI_UID'
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-types
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
||||||
|
@ -178,6 +179,7 @@ export const generateSystemEnvFile = async () => {
|
||||||
envMap.set('REDIS_HOST', 'tipi-redis');
|
envMap.set('REDIS_HOST', 'tipi-redis');
|
||||||
envMap.set('REDIS_PASSWORD', redisPassword);
|
envMap.set('REDIS_PASSWORD', redisPassword);
|
||||||
envMap.set('DEMO_MODE', String(data.demoMode || 'false'));
|
envMap.set('DEMO_MODE', String(data.demoMode || 'false'));
|
||||||
|
envMap.set('GUEST_DASHBOARD', String(data.guestDashboard || 'false'));
|
||||||
envMap.set('LOCAL_DOMAIN', data.localDomain || 'tipi.lan');
|
envMap.set('LOCAL_DOMAIN', data.localDomain || 'tipi.lan');
|
||||||
envMap.set('NODE_ENV', 'production');
|
envMap.set('NODE_ENV', 'production');
|
||||||
|
|
||||||
|
|
|
@ -43,6 +43,14 @@ export const envSchema = z.object({
|
||||||
if (typeof value === 'boolean') return value;
|
if (typeof value === 'boolean') return value;
|
||||||
return value === 'true';
|
return value === 'true';
|
||||||
}),
|
}),
|
||||||
|
guestDashboard: z
|
||||||
|
.string()
|
||||||
|
.or(z.boolean())
|
||||||
|
.optional()
|
||||||
|
.transform((value) => {
|
||||||
|
if (typeof value === 'boolean') return value;
|
||||||
|
return value === 'true';
|
||||||
|
}),
|
||||||
seePreReleaseVersions: z
|
seePreReleaseVersions: z
|
||||||
.string()
|
.string()
|
||||||
.or(z.boolean())
|
.or(z.boolean())
|
||||||
|
@ -55,5 +63,5 @@ export const envSchema = z.object({
|
||||||
|
|
||||||
export const settingsSchema = envSchema
|
export const settingsSchema = envSchema
|
||||||
.partial()
|
.partial()
|
||||||
.pick({ dnsIp: true, internalIp: true, appsRepoUrl: true, domain: true, storagePath: true, localDomain: true, demoMode: true })
|
.pick({ dnsIp: true, internalIp: true, appsRepoUrl: true, domain: true, storagePath: true, localDomain: true, demoMode: true, guestDashboard: true })
|
||||||
.and(z.object({ port: z.number(), sslPort: z.number(), listenIp: z.string().ip().trim() }).partial());
|
.and(z.object({ port: z.number(), sslPort: z.number(), listenIp: z.string().ip().trim() }).partial());
|
||||||
|
|
Loading…
Reference in a new issue