Seaside wrapper for https://semantic-ui.com/
First install Pharo on your machine. Pharo 7 onwards is recommended. Either using PharoLauncher or Pharo ZeroConf:
git clone https://github.com/astares/Seaside-SemanticUI.git
cd Seaside-SemanticUI
./download.sh
The file download.sh could be used to download the full package and run it.
This file starts the environment
This file cleans the environment afterwards so a fresh download could be done
wget -O- get.pharo.org/64/70+vm | bash
./pharo-ui Pharo.image
Metacello new
baseline:'SemanticUI';
repository: 'github://astares/Seaside-SemanticUI:master/src';
load
Metacello new
baseline:'Seaside3';
repository: 'github://SeasideSt/Seaside:develop/repository';
load.
and then load the packages you need using Iceberg
Start the web server for Seaside - for instance with Zinc evaluate
ZnZincServerAdaptor startOn: 8080.
WebBrowser openOn: 'http://localhost:8080/semanticui/'