Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markfirmware/test36
testing gitpod and pharo
https://github.com/markfirmware/test36
gitpod pharo-smalltalk
Last synced: 20 days ago
JSON representation
testing gitpod and pharo
- Host: GitHub
- URL: https://github.com/markfirmware/test36
- Owner: markfirmware
- Created: 2021-02-02T22:30:24.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-03T02:18:08.000Z (almost 4 years ago)
- Last Synced: 2024-10-31T06:25:11.589Z (2 months ago)
- Topics: gitpod, pharo-smalltalk
- Language: Dockerfile
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gitpod-pharo
Add the gitpod extension to your browser, then press the gitpod button when viewing this repository.
A gitpod workspace will open including theia (similar to vscode) and also a novnc brrowser window to
the gitpod workspace where the pharo launcher will be running.## Explanation
On the road to gtoolkit running within gitpod. As discussed in the discord gtoolkit help channel, there
is a graphics issue running gtoolkit in gitpod related to Skia and/or glutin.Therefore this repo is a step away from gtoolkit and is using pharo 9.0 for development in the mean time.
Gitpod is a theia/vscode virtual development environment.
The goal for this repo is to implement and demonstrate vscode supoort for smalltalk scripting:
1. (Possibly) a self-contained vscode extension for smalltalk syntax. This necessarily would be implemented in typescript
2. A vscode client using lsp (language server protocol) to get syntax errors and code completions from a running pharo vm
3. Some way of transmitting smalltalk files and selections for execution in the vm and returning the output**Pharo provides code completion natively in its environment. If there is already some kind of external repl client,
telnet even, that has code completion then please open an issue and inform me to prevent duplicated effort.**### Notes
The vnc resolution is set [here in pharo.dockerfile](https://github.com/markfirmware/test36/blob/f37b386846177b734fc2cfcbe4ed0ea951a37df5/pharo.dockerfile#L4)
Gitpod does not persist $HOME (/home/gitpod) but does persist /workspace/REPO_NAME.
Therefore pharo is started with:HOME=$(pwd) ./pharolauncher/pharo-launcher
as seen in [.gitpod.yml](https://github.com/markfirmware/test36/blob/cbd8f2e34b905e08c9e3e6cdc24a931b78b6d466/.gitpod.yml#L13)