Skip to content
Kevin Jump edited this page Sep 6, 2015 · 3 revisions

uSync has been written to support a number of diffrent ways of working, here are a few examples, but there are probibly many more we haven't thought off.

Standard

Import = True, ExporAtStartup = False, ExportOnSave = True

Multiple developers, each working on an independent version of umbraco (no shared files or db).

  • At start up uSync will import any settings from disk into umbraco.
  • whenever some configuration item is saved in umbraco uSync will write the change to disk.

if you then share the uSync folder (or better still use source control) each developer should remain in sync with other developers when they check out the latest version of the files.

Deployment

  • Developer Site : Import = True, ExporAtStartup = False, ExportOnSave = True
  • Server : Import = True, ExporAtStartup = False, ExportOnSave = False

Developer pushing changes to a server, when a developer has changes they want to make to a server, they make them on their own copy and push the files to the server - they then either restart the site on the server or use the dashboard to run an import, uSync will identify the changes and push them into umbraco.

Clone this wiki locally