AWS support libraries for VAST Platform (VA Smalltalk)
Report a defect
|
Request feature
Support library for using AWS with the VAST Platform (formerly VA Smalltalk) written in Smalltalk. This is the VAST Platform adaption of the project of Jan van de Sandt at https://github.com/jvdsandt/pharo-aws-toolbox. The initial (partial) port to the VAST Platform was done by Vince Mecking and Adriaan van Os.
- The code is licensed under MIT.
- The documentation is licensed under CC BY-SA 4.0.
- Install VAST Platform 11.
- Install Tonel support in your development image following this guide.
- Clone this repository.
- The easiest and recommended approach is to install it via a script:
| loader path |
path := (CfsPath named: '<insert path to root `aws-toolbox-vast` local repo here>').
loader := TonelLoader readFromPath: path.
loader
beUnattended; "do not prompt and use all defaults"
useGitVersion.
loader loadAllMapsWithRequiredMaps.
Or you can load the Configuration Map AWS
(and optionally AWS Tests
if you want to run the unit tests) from the context menu of the Configuration Maps Browser: "Import"
-> "Load Configuration Maps from Tonel repository..."
-> select path to root aws-toolbox-vast
local repo. This will open a dialog and will use convenient defaults for the load. Refer to its documentation for more details.
- Optionally run the SUnit tests included in the map
AWS Tests
to ensure correct installation. One easy way is to right-click on theAWS Tests
map name in the Name pane (as opposed to version pane) and then selectTest Loaded Applications
.
Check the Contribution Guidelines