bootstrap static method
Configures modules and returns the app before listening (for tests/custom startup).
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,
);