Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Continuous What?! - Deploying software the right way - Part I

Continuous What?! - Deploying software the right way - Part I

The theoretical part of a two-part presentation given to university students about the process of deploying software.

Marcel Neidinger

November 17, 2016
Tweet

More Decks by Marcel Neidinger

Other Decks in Programming

Transcript

  1. Kontinuierliche Integration ist ein Begriff aus der Software-Entwicklung, der den

    Prozess des fortlaufenden Zusammenfügens von Komponenten zu einer Anwendung beschreibt. […] - Wikipedia
  2. import laboratory experiment = laboratory.Experiment() with experiment.control() as c: c.record(get_objects_from_database())

    with experiment.candidate() as c: c.record(get_objects_from_cache()) objects = experiment.run() laboratory When old things have to go