Wednesday, July 08, 2020

Pharo and Repl.it

I tried repl.it  with a simple script to download and run Pharo headless and also Pharo UI Works nicely - within the top right part of the browser window one can even see and use the Pharo window.

Clickable but X-Windows emulation does not seem to show the full window (try clicking on "full screen mode" in the welcome window to adjust this).

Try this https://repl.it/@astares/Run-Pharo-9#main.sh

Bild

Just consider to create an own account on repl.it and use the following code in a main.sh:


echo *********************************************
echo * Download and run Pharo
echo *********************************************

# prepare
if [ -d build ]; then rm -Rf build; fi
mkdir build
cd build

# download 
wget -O- https://get.pharo.org/64/90+vm | bash

# run
./pharo-ui ./Pharo.image

No comments: