astares / Seaside-Bootstrap5

Seaside wrapper for Bootstrap 5 on Pharo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Seaside-Bootstrap5

Unit Tests Coverage Status

Pharo 8 Pharo 9 Pharo 10 Pharo 11 Pharo 12

Bootstrap 5 wrapper for Seaside for Pharo 9, Pharo 10, Pharo 11, Pharo 12

based on 5.0 from https://getbootstrap.com/

Installation

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

Load Pharo using ZeroConf

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

Load all in one

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

Load Seaside and then manually

Metacello new
  baseline:'Seaside3';
  repository: 'github://SeasideSt/Seaside:master/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/bootstrap5/'

Learn

Migration from Bootstrap 4 to 5

  • ...

About

Seaside wrapper for Bootstrap 5 on Pharo

License:MIT License


Languages

Language:Smalltalk 100.0%Language:Shell 0.0%