UNPKG

coreflow

Version:

manage docker and scale applications across servers

15 lines (13 loc) 528 B
import * as plugins from './coreflow.plugins' // import modules in alphabetical order import * as coreflowConfig from './coreflow.config' import * as coreflowEnvironment from './coreflow.environment' import * as coreflowDockerConnection from './coreflow.dockerconnection' import * as coreflowServiceDetection from './coreflow.servicedetection' export let run = () => { let done = plugins.smartq.defer() coreflowConfig.run() .then(coreflowEnvironment.run) .then(coreflowServiceDetection.run) return done.promise }