bootstrap static method

Future<Rewo> bootstrap({
  1. int? port,
  2. ServerEngine? engine,
  3. String envFile = '.env',
})

Implementation

static Future<Rewo> bootstrap({
  int? port,
  ServerEngine? engine,
  String envFile = '.env',
}) =>
    RewoBootstrap.start(
      modules: moduleRegistry(),
      serviceName: 'Rewo API',
      port: port,
      engine: engine,
      envFile: envFile,
    );