diff --git a/lib/commands/local/configure.ts b/lib/commands/local/configure.ts index b8e596a2..6cb15474 100644 --- a/lib/commands/local/configure.ts +++ b/lib/commands/local/configure.ts @@ -113,6 +113,12 @@ export default class LocalConfigureCmd extends Command { }, domain: [['config_json', 'hostname']], }, + { + template: { + developmentMode: '{{developmentMode}}', + }, + domain: [['config_json', 'developmentMode']], + }, { template: { wifi: { @@ -163,6 +169,13 @@ export default class LocalConfigureCmd extends Command { name: 'networkKey', default: data.networkKey, }, + { + message: + 'Enable development mode? (Open ports and root access - Not for production!)', + type: 'confirm', + name: 'developmentMode', + default: false, + }, { message: 'Do you want to set advanced settings?', type: 'confirm',