(function( inDevelopment ) {
  function launch() {
    if( inDevelopment ) {
      return;
    }
    //TODO GCP
  }
  window.addEventListener( 'load', launch );
}( true ));