### Load Seaside-Bootstrap4 Baseline Source: https://github.com/astares/seaside-bootstrap4/blob/master/README.md Loads the Seaside-Bootstrap4 library using Metacello, specifying the baseline and repository. This is the recommended method for a complete installation. ```Smalltalk Metacello new baseline:'Bootstrap4'; repository: 'github://astares/Seaside-Bootstrap4:master/src'; load ``` -------------------------------- ### Install Pharo using ZeroConf Source: https://github.com/astares/seaside-bootstrap4/blob/master/README.md Instructions to load Pharo using ZeroConf, including downloading the VM and launching the image. This is a prerequisite for using the Seaside-Bootstrap4 library. ```Shell wget -O- get.pharo.org/64/80+vm | bash ./pharo-ui Pharo.image ``` -------------------------------- ### Run Seaside Server with Zinc Source: https://github.com/astares/seaside-bootstrap4/blob/master/README.md Starts a Zinc HTTP server on port 8080 and opens the default web browser to the Seaside application. This is used to run and test the Seaside-Bootstrap4 integration. ```Smalltalk ZnZincServerAdaptor startOn: 8080. WebBrowser openOn: 'http://localhost:8080/bootstrap4/' ``` -------------------------------- ### Load Seaside Manually Source: https://github.com/astares/seaside-bootstrap4/blob/master/README.md Loads Seaside3 using Metacello, then suggests using Iceberg to manually load necessary packages for Seaside-Bootstrap4. This approach offers more granular control over package loading. ```Smalltalk Metacello new baseline:'Seaside3'; repository: 'github://SeasideSt/Seaside:develop/repository'; load. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.