Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which image to use to deploy a Seaside 3.0 application with Pharo 1.4?

I have developed a Seaside 3.0 application in Pharo 1.4 and want do deploy it on Linode.

What (small) image do i load my application into for that purpose? And how?

I found Project Pharo Kernel 1.4 Seaside on the Pharo Jenkins Server, but as it seems to be without graphical user interface i do not know how to load my application into it and how to configure Seaside. Is it a good idea to use this image? How would i configure it?

like image 900
Helene Bilbo Avatar asked Aug 20 '12 14:08

Helene Bilbo


1 Answers

I think the best thing yo can do is to take a regular "1.4 summer" image and execute.

ScriptLoader new cleanUpForProduction. 

That will give you a perfectly operating 9m-sized image.

like image 132
EstebanLM Avatar answered Jan 01 '23 11:01

EstebanLM