public void startDevServer()

in src/main/java/org/apache/fineract/cn/dev/ServiceRunner.java [297:334]


  public void startDevServer() throws InterruptedException, IOException, ArtifactResolutionException {
    try {
      if (this.shouldProvision) {
        this.provisionAppsViaSeshat();
      } else {
        this.migrateServices();
      }
    } finally {
      ServiceRunner.provisionerService.kill();
    }

    System.out.println(identityManager.toString());
    System.out.println(organizationManager.toString());
    System.out.println(customerManager.toString());

    if (!liteModeEnabled) {
      System.out.println(ledgerManager.toString());
      System.out.println(portfolioManager.toString());
      System.out.println(depositAccountManager.toString());
      System.out.println(tellerManager.toString());
      System.out.println(reportManager.toString());
      System.out.println(chequeManager.toString());
      System.out.println(payrollManager.toString());
      System.out.println(groupManager.toString());
      System.out.println(notificationManager.toString());
    }

    boolean run = true;

    while (run) {
      final Scanner scanner = new Scanner(System.in);
      final String nextLine = scanner.nextLine();
      if (nextLine != null && nextLine.equals("exit")) {
        run = false;
      }
      eventRecorder.clear();
    }
  }