Browse Source

storage-node-v2: Add API url setting for the dev:init.

Shamil Gadelshin 3 years ago
parent
commit
94b3fc3509
1 changed files with 4 additions and 0 deletions
  1. 4 0
      storage-node-v2/src/commands/dev/init.ts

+ 4 - 0
storage-node-v2/src/commands/dev/init.ts

@@ -12,6 +12,10 @@ import ApiCommandBase from '../../command-base/ApiCommandBase'
 export default class DevInit extends ApiCommandBase {
   static description = 'Initialize development environment. Sets Alice as storage working group leader.'
 
+  static flags = {
+    ...ApiCommandBase.flags,
+  }
+
   async run(): Promise<void> {
     await this.ensureDevelopmentChain()