Created
December 1, 2018 03:37
-
-
Save edcrypt/6c631a8ca59178acb961bb82ecfa1c41 to your computer and use it in GitHub Desktop.
Install Seaside web development stuff on Pharo7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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