The HelloWorld sample uses a very simple workflow that calls an activity to print Hello World. It shows basic usage of the framework, including implementing activities and workflow coordination logic and building workers to run the workflow and activities.
The AWS Flow Framework for Ruby is required, which can be obtained and installed using the information here:
If you already have Ruby and RubyGems installed, you can install the framework by opening a terminal window and typing:
gem install aws-flow
For more information about setting up the AWS Flow Framework for Ruby, see Installing the AWS Flow Framework for Ruby in the AWS Flow Framework for Ruby Developer Guide.
To view or download the code for all of the AWS Flow Framework for Ruby recipes and samples, go to:
To run the HelloWorld sample:
-
Open two separate terminal windows and, in each one, change to the
hello_world
directory in the location where you cloned or unarchived the sample code. For example:cd ~/Downloads/aws-flow-ruby-samples/samples/hello_world
-
In each command-line (terminal) window, execute the following commands, substituting your AWS Access keys for the example values.
On Linux, OS X or Unix:
export AWS_ACCESS_KEY_ID='your-access-key' export AWS_SECRET_ACCESS_KEY='your-secret-key' export AWS_REGION='your-aws-region'
On Windows:
set AWS_ACCESS_KEY_ID=your-access-key set AWS_SECRET_ACCESS_KEY=your-secret-key set AWS_REGION=your-aws-region
-
Execute the following commands, one in each of the terminal windows:
aws-flow-ruby -f worker.json ruby starter.rb
For more information about the Amazon Simple Workflow service and the Amazon Flow Framework for Ruby, consult the following resources: