Skip to content

astares/Seaside-SemanticUI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Seaside-SemanticUI

Seaside wrapper for https://semantic-ui.com/

Installation

First install Pharo on your machine. Pharo 7 onwards is recommended. Either using PharoLauncher or Pharo ZeroConf:

Script installation

download.sh

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.

start.sh

This file starts the environment

clean.sh

This file cleans the environment afterwards so a fresh download could be done

Loading independent

Load Pharo using ZeroConf

wget -O- get.pharo.org/64/70+vm | bash
./pharo-ui Pharo.image

Load all in one

  Metacello new
      baseline:'SemanticUI';
      repository: 'github://astares/Seaside-SemanticUI:master/src';
      load

Load Seaside and then manually

Metacello new
  baseline:'Seaside3';
  repository: 'github://SeasideSt/Seaside:develop/repository';
  load.

and then load the packages you need using Iceberg

Run

Start the web server for Seaside - for instance with Zinc evaluate

ZnZincServerAdaptor startOn: 8080.
WebBrowser openOn: 'http://localhost:8080/semanticui/'

Releases

No releases published

Packages

No packages published