Configuration
@quik/bootstrap has no default configuration keys of its own — it only orchestrates lifecycle hooks and
module loading on top of @quik/core's configuration system (getConfig(), initConfig()).
Module.setup(options)accepts anIQBootstrapSetupobject:configurationFolder,core.logging,core.i18n,core.modules,modules, andflags(isCli,startHttpServer,startWebSocketServer,startScheduler,isTest).- The
flagsobject is forwarded asIQModuleSetupto every module'ssetup(options)function. - Modules loaded through
Module.setupmust declareModuleNameand, if they depend on other modules,Dependencies: string[]— bootstrap resolves and loads dependencies before the dependent module.