seaside-on-okd

Description

a simple project to make sure I can build pharo image that can be run with OKD

Details

Source
GitHub
Dialect
pharo (25% confidence)
License
GPL-3.0
Created
July 1, 2022
Updated
April 2, 2025

Categories

Web

README excerpt

# seaside-okd-demo
a simple project to make sure I can build pharo image that can be run with OKD

Building the image with "PharoCommandLineHandler forcePreferencesOmission: true." seems to do the trick to let pharo run on an read-only file-system (at least for Pharo 11)	

# to load it in Pharo

```Smalltalk
Metacello new
	baseline: 'SeasideOnOkd';
	repository: 'github://casco/seaside-on-okd:main';
	onConflictUseLoaded;
	onWarningLog;
	load.

WAAdmin register: SeasideOnOkdComponent asApplicationAt: 'home'.
WAAdmin defaultDispatcher defaultName: 'home'.
Transcript cr; 
        show: 'App is running happily';
        cr;
        show: 'PharoCommandLineHandler forcePreferencesOmission -> ', PharoCommandLineHandler forcePreferencesOmission printString;
        cr.

```
← Back to results