Combining a Managed Runtime with NodeRuntime in Effect Typescript

I got a managed runtime which composes all of my service layers (db, redis, domain-specific services, etc.). Is there a way to combine a managed runtime with NodeRuntime.runMain from '@effect/platform-node', so that I get the benefits of NodeRuntime, but use my custom runtime to have all my services be provided throughout all my server application?
Was this page helpful?