Loading with Metacello

The Pier core version 3.2 can be loaded from GitHub using Metacello:

Metacello new
 baseline:'Pier';
 repository: 'github://Pier-CMS/Pier3:main/repository';
 onConflictUseLoaded;
 load.

The #onConflict... code is due to a Grease version mismatch between Seaside and Magritte.

For the full install with all the addons, it can be loaded with:

Metacello new
 baseline:'Pier';
 repository: 'github://Pier-CMS/Pier3:main/repository';
 onConflictUseLoaded;
 load: 'addons'.

The PierToDo code depends on the add-ons, it can be loaded with:

Metacello new
 baseline:'Pier';
 repository: 'github://Pier-CMS/Pier3:main/repository';
 onConflictUseLoaded;
 load: 'todo'.