Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/astares/seaside-semanticui
Seaside wrapper for https://semantic-ui.com/
https://github.com/astares/seaside-semanticui
pharo seaside
Last synced: 21 days ago
JSON representation
Seaside wrapper for https://semantic-ui.com/
- Host: GitHub
- URL: https://github.com/astares/seaside-semanticui
- Owner: astares
- Created: 2018-12-20T16:33:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-12T15:44:38.000Z (almost 6 years ago)
- Last Synced: 2024-10-31T06:41:50.164Z (2 months ago)
- Topics: pharo, seaside
- Language: HTML
- Size: 5.75 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Seaside-SemanticUI
Seaside wrapper for https://semantic-ui.com/## Installation
First install [Pharo](http://www.pharo.org) on your machine. Pharo 7 onwards is recommended. Either using [PharoLauncher](https://github.com/pharo-project/pharo-launcher) or [Pharo ZeroConf](http://get.pharo.org/):### Script installation
## download.sh
```bash
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
```Smalltalk
Metacello new
baseline:'SemanticUI';
repository: 'github://astares/Seaside-SemanticUI:master/src';
load
```#### Load Seaside and then manually
```Smalltalk
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](http://www.seaside.st) - for instance with Zinc evaluate
```Smalltalk
ZnZincServerAdaptor startOn: 8080.
WebBrowser openOn: 'http://localhost:8080/semanticui/'
```