Owl.Start(config?: StartConfig): Promise

Server & Client

Triggers execution across all registered architecture layers. Automatically establishes topological dependency resolving, orders sequential internal phases, locks configuration schemas and builds system-wide player tracking arrays.

Parameters

configRuntime override arguments manipulating verbose limits, operation timeout barriers, global middleware setups and custom datastore drivers.

Returns

PromiseResolves unconditionally upon absolute lifecycle readiness or rejects on dependency lock cycles and execution timeouts.

Related Types

Owl.Start({
    Verbose = true,
    InitTimeout = 15,
    GlobalMiddleware = {
        Inbound = { Owl.Util.RateLimiter.perPlayer(60, 1) }
    }
}):andThen(function()
    print("Framework network systems fully deployed!")
end):catch(warn)