Skip to content

Instantly share code, notes, and snippets.

@edcrypt
Created December 1, 2018 03:37
Show Gist options
  • Save edcrypt/6c631a8ca59178acb961bb82ecfa1c41 to your computer and use it in GitHub Desktop.
Save edcrypt/6c631a8ca59178acb961bb82ecfa1c41 to your computer and use it in GitHub Desktop.
Install Seaside web development stuff on Pharo7
Transcript clear; cr; show: 'Updating Zinc...'; cr.
Metacello new
repository: 'github://svenvc/zinc/repository';
baseline: 'ZincHTTPComponents';
load.
Transcript cr; show: 'Installing Seaside...'; cr.
Metacello new
baseline:'Seaside3';
repository: 'github://edcrypt/Seaside:develop/repository';
load.
Transcript cr; show: 'Installing Glorp...'; cr.
Metacello new
githubUser: 'edcrypt' project: 'glorp' commitish: 'master' path: '';
baseline: 'Glorp';
load.
Transcript cr; show: 'Installing Garage...'; cr.
Metacello new
githubUser: 'edcrypt' project: 'garage' commitish: 'master' path: '';
baseline: 'Garage';
load.
Transcript cr; show: 'Installing GarageGlorp...'; cr.
Metacello new
githubUser: 'edcrypt' project: 'glorp-garage' commitish: 'master' path: '';
baseline: 'GarageGlorp';
load.
Transcript cr; show: 'Installing Renoir.st...'; cr.
Metacello new
baseline: 'RenoirSt';
repository: 'github://edcrypt/RenoirSt:master/source';
load.
Transcript cr; show: 'Installing Magritte...'; cr.
Metacello new
baseline:'Magritte';
repository: 'github://edcrypt/Magritte:master/src';
load.
Transcript cr; show: 'Installing Seaside-Bootstrap4...'; cr.
Metacello new
baseline:'Bootstrap4';
repository: 'github://edcrypt/Seaside-Bootstrap4:master/src';
load.
Transcript cr; show: 'Post-Install setup...'; cr.
ZnZincServerAdaptor startOn: 8080.
WebBrowser openOn: 'http://localhost:8080/bootstrap4/'.
GAGlorpDriver beGlorpDefaultDriver.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment