PackageDescription: RoadRunnerBundle(Bundle)


Road Runner Bundle

Last published: March 15, 2012 by 'klnsrgn'


RoadRunner monitors a directory and deploys and runs all applications put into this directory. If an application is updated, the deployed application will be stopped, updated and restarted. If an application is deleted, the deployed application will be stopped and removed.

RoadRunner-Cluster allows to distribute applications across a cluster of machines.
RoadRunner-Seaside provides a simple web interface.

Documentation:
http://dl.dropbox.com/u/21555916/documentation/roadrunner.html

Quickstart:
1. Create two directories, one for applications that should be deployed, one for deployed applications
2. Start the supervisor:

supervisor := RoadRunner.Supervisor new.
supervisor
applicationsDirectory: 'applications';
deployDirectory: 'deployed applications'.
supervisor defaultRuntimeEnvironment
vmPath: CEnvironment commandLine first;
imageFilename: (PortableFilename fromComponents: #('$(VISUALWORKS)' 'image' 'visual.im')).
supervisor start

3. Put images or ZIP archives with one image and/or parcels in the applications directory

Contact: h.kleinsorgen@gmail.com

Licensed under the MIT license

Copyright (c) 2012 Holger Kleinsorgen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.