Пример #1
0
        public PostInstaller(CLIContext context)
        {
            Context = context;

            Python             = new PythonInstaller();
            Docker             = new DockerInstaller(context);
            PlatformIO         = new PlatformIOInstaller();
            Mqtt               = new MosquittoInstaller(context);
            MqttBridge         = new MqttBridgeInstaller(context);
            UIController       = new UIControllerInstaller(context);
            ArduinoPlugAndPlay = new ArduinoPlugAndPlayInstaller(context);

            Supervisor = new SupervisorInstaller(context);
            WWW        = new WwwInstaller(context);

            SettingsManager = new SettingsManager(context.IndexDirectory);

            Verifier = new Verifier(context);
        }
Пример #2
0
 public GeneralInstaller()
 {
     Python = new PythonInstaller();
 }