diff --git a/src/app/service_based_app.cpp b/src/app/service_based_app.cpp index dcc11d3..f011194 100644 --- a/src/app/service_based_app.cpp +++ b/src/app/service_based_app.cpp @@ -121,7 +121,9 @@ void ServiceBasedApp::RegisterServices() { registry_.RegisterService(eventBus); // Configuration service - registry_.RegisterService(); + services::impl::RuntimeConfig runtimeConfig; + runtimeConfig.scriptPath = scriptPath_; + registry_.RegisterService(runtimeConfig); // Window service registry_.RegisterService(eventBus);