Installation - JimBobSquarePants/Zoombraco GitHub Wiki

Installing the Framework

Installing the framework has been developed to be as painless as possible. This is done via Nuget.

PM> Install-Package Zoombraco

Alternatively nightly releases can be installed from the MyGet feed. The source for which are as follows.

NuGet V3 feed URL (Visual Studio 2015+):

https://www.myget.org/F/zoombraco/api/v3/index.json

NuGet V2 feed URL (Visual Studio 2012+):

https://www.myget.org/F/zoombraco/

You will need to setup the correct feed details in your Nuget.config as follows:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="nuget.org" value="https://www.nuget.org/api/v2/" />
    <add key="myget.ditto" value="https://www.myget.org/F/umbraco-ditto/" />
    <add key="myget.zoombraco" value="https://www.myget.org/F/zoombraco/api/v3/index.json"/>
  </packageSources>
</configuration>

Once the package has been installed you will see the following application settings added to the web.config:

<!--The currently installed Zoombraco version.-->
<add key="Zoombraco:Version" value="0.5.0" />

<!--The amound of time in seconds to cache the output for-->
<add key="Zoombraco:OutputCacheDuration" value="0" />

<!--The amount of time in milliseconds to wait to before requesting an ImageProcessor url from the CDN.-->
<add key="Zoombraco:ImageCdnRequestTimeout" value="1000" />

Additionally the existing value will be set to false to prevent compatibility issues with Ditto.

<add key="Umbraco.ModelsBuilder.Enable" value="false" />

Once you navigate to the back office you will see additional DocumentTypes, DataTypes, and Templates installed within the CMS.