chore(server): default DEPLOYMENT_TYPE should be selfhosted (#11484)

This commit is contained in:
liuyi
2025-04-07 10:05:14 +08:00
committed by GitHub
parent 854569af2d
commit e376992ccf

View File

@@ -80,7 +80,7 @@ export class Env implements AppEnv {
);
DEPLOYMENT_TYPE = readEnv(
'DEPLOYMENT_TYPE',
DeploymentType.Affine,
DeploymentType.Selfhosted,
Object.values(DeploymentType)
);
FLAVOR = readEnv('SERVER_FLAVOR', Flavor.AllInOne, Object.values(Flavor));