Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/astares/seaside-bootstrap
Bootstrap for Seaside wrapper for Pharo
https://github.com/astares/seaside-bootstrap
pharo seaside
Last synced: about 2 months ago
JSON representation
Bootstrap for Seaside wrapper for Pharo
- Host: GitHub
- URL: https://github.com/astares/seaside-bootstrap
- Owner: astares
- License: mit
- Created: 2017-11-29T23:57:34.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-22T06:01:10.000Z (almost 2 years ago)
- Last Synced: 2024-10-09T13:25:16.212Z (2 months ago)
- Topics: pharo, seaside
- Language: Smalltalk
- Size: 1.65 MB
- Stars: 10
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Seaside-Bootstrap
Bootstrap for Seaside wrapper for Pharo**Note:** this is outdated and we only provide it for compatibility. Be aware that there are newer packages available for newer Pharo, Bootstrap and Seaside versions, see:
- https://github.com/astares/Seaside-Bootstrap4
- https://github.com/astares/Seaside-Bootstrap5## Prerequisites
### Pharo 6
In Pharo 6 first run:
```Smalltalk
Iceberg enableMetacelloIntegration: true.
IceMetacelloPharoPlatform select.
```then proceed with the load expressions given in "Installation" section.
### Pharo 7 and Pharo 8
You can clone the project and run the download.sh script
```
git clone https://github.com/astares/Seaside-Bootstrap.git
cd Seaside-Bootstrap
./download.sh
```If you already have a Pharo 7 or later image just proceed with the load expressions given in "Installation" section.
## Installation
### Loading latest stable version using config
```Smalltalk
Metacello new
configuration:'Bootstrap';
repository: 'github://astares/Seaside-Bootstrap:master/src';
version: #stable;
load
```### Loading latest *development* version using baseline
```Smalltalk
Metacello new
baseline:'Bootstrap';
repository: 'github://astares/Seaside-Bootstrap:master/src';
load
```