We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df95d01 commit f0a1bf7Copy full SHA for f0a1bf7
1 file changed
server/cli-bridge.js
@@ -190,14 +190,17 @@ export class CLIBridge {
190
case 'traefik':
191
deploymentResult = await this.deployWithTraefik(appPath, config);
192
break;
193
+ case 'local':
194
case 'standard':
195
deploymentResult = await this.deployStandard(appPath, config);
196
197
case 'authelia':
198
deploymentResult = await this.deployWithAuthelia(appPath, config);
199
200
default:
- throw new Error(`Unknown deployment mode: ${deploymentMode.type}`);
201
+ // Fallback to local/standard for unknown modes
202
+ deploymentResult = await this.deployStandard(appPath, config);
203
+ break;
204
}
205
206
DeploymentLogger.logNetworkActivity('Application deployed successfully', {
0 commit comments