<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>FeedHenry &#187; Cloud Foundry</title>
	<atom:link href="http://www.feedhenry.com/tag/cloud-foundry/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.feedhenry.com</link>
	<description>Mobile Application Platform</description>
	<lastBuildDate>Thu, 16 May 2013 14:28:27 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Build an app and stage to Cloud Foundry™</title>
		<link>http://www.feedhenry.com/2012/03/build-an-app-and-stage-to-cloud-foundry-in-3-easy-steps/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=build-an-app-and-stage-to-cloud-foundry-in-3-easy-steps</link>
		<comments>http://www.feedhenry.com/2012/03/build-an-app-and-stage-to-cloud-foundry-in-3-easy-steps/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 18:41:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[App]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Cloud Foundry]]></category>
		<category><![CDATA[FHC]]></category>

		<guid isPermaLink="false">http://www.feedhenry.com/?p=2781</guid>
		<description><![CDATA[Available at mobilecf.feedhenry.com, Cloud Foundry developers can build mobile apps using HTML5, JavaScript and CSS fully integrated and instantly staged to their CloudFoundry.com account. To get started, simply download the FeedHenry Command Line tool, using your existing CloudFoundry.com credentials. New subscribers to CloudFoundry.com can join using the promotion code “feedhenry”. In this following blog we [...]]]></description>
			<content:encoded><![CDATA[<p>Available at <a href="https://mobilecf.feedhenry.com/">mobilecf.feedhenry.com</a>, Cloud Foundry developers can build mobile apps using HTML5, JavaScript and CSS fully integrated and instantly staged to their CloudFoundry.com account. To get started, simply download the FeedHenry Command Line tool, using your existing CloudFoundry.com credentials. New subscribers to CloudFoundry.com can join using the promotion code “feedhenry”. In this following blog we demonstrate how to use the FeedHenry Command Line tool to clone a sample/template app, (from GitHub), stage the server-side code to CloudFoundry.com (Node.js and Redis), and build a HTML5 &amp; JS app for an Android device. See <a href="https://mobilecf.feedhenry.com/">https://mobilecf.feedhenry.com</a> for detailed instructions.</p>
<h2>Installing node.js</h2>
<p>The FeedHenry CLI tool, fhc, uses node.js on your local machine. To setup node.js use the installer. http://nodejs.org/#download</p>
<h2>Installing or Updating the FeedHenry CLI Tool, fhc</h2>
<p>Use the Node Package Manager (npm) to install or update fhc, the CLI tool.</p>
<p>$ sudo npm install -g fh-fhc</p>
<p>(the optional prefix “sudo” gives permission to install system-wide in a Unix style environment).</p>
<p>To test fhc is installed correctly and see the version you have installed, use:</p>
<p>$ fhc -v</p>
<p>The CLI tool fhc has some built-in documentation; use fhc help for general help, or fhc help [command] for help on a specific command.</p>
<h2>Logging in using your Cloudfoundry.com credentials</h2>
<p>To get started with the CLI tool you need to login to the FeedHenry platform using your Cloudfoundry.com credentials. This will automatically create a FeedHenry account at mobilecf.feedhenry.com.</p>
<p>$ fhc target https://mobilecf.feedhenry.com</p>
<p>$ fhc login &lt;your CloudFoundry.com email&gt; &lt;your CloudFoundry.com password&gt;</p>
<p>In the next 3 simple steps, we will illustrate how to create a HTML5/JS app with an instant backend in cloudfoundry.com</p>
<h2>1. Forking a template app in github (code)</h2>
<p>To edit/modify the template app, login to github, and fork the app to your personal account.</p>
<address> https://github.com/feedhenry/App-Anatomy</address>
<p>Get the read-only git identifier for your cloned app.</p>
<address> git://github.com/&lt;YOUR-ID&gt;/App-Anatomy.git</address>
<p>Now create an app in the FeedHenry platform linked to your fork of the template app in github.</p>
<address>$ fhc apps create App-Anatomy git://github.com/&lt;YOUR-ID&gt;/App-Anatomy.git</address>
<p>If using a secured repository, please check out the documentation docs.feedhenry.com for generating and uploading public/private keys.</p>
<h2>2. Staging the backend to Cloud Foundry</h2>
<p>Staging to Cloud Foundry requires the use of the unique app identifier &lt;APP-ID&gt; that can be acquired by listing the active FeedHenry apps.</p>
<address>$ fhc apps</address>
<p>The staging can be done to the debug environment or the live environment. The former hosts the server-side for “debug” apps, and the latter for “release” apps. Separating these allows developers to exercise functionality separately in testing before deploying to production.</p>
<address>$ fhc stage &lt;APP-ID&gt; &#8211;devel</address>
<p>or</p>
<address>$ fhc stage &lt;APP-ID&gt; &#8211;live</address>
<p>To ensure that the app has indeed staged correctly use the Cloud Foundry CLI tool (vmc).</p>
<address>$ vmc target api.cloudfoundry.com</address>
<address>$ vmc login</address>
<address>$ vmc apps</address>
<address>$ vmc logs &lt;my Cloud Foundry app-id&gt;</address>
<p>We have just staged the cloud code from our forked app. Each app contains three directories: client, cloud, and shared. The client directory is for the client-side HTML5/JS app, the cloud directory is for the server-side Node.js code (this is what has been staged). The shared directory is in both. Check out the documentation for more information on using the shared directory.</p>
<h2>3. Building the Android client</h2>
<p>To generate an Android debug build of the app:</p>
<address>$ fhc build app=&lt;APP-ID&gt; config=debug destination=android version=2.2 download=true</address>
<p> The appropriate files are gathered, bundled and dispatched to the FeedHenry build farm. The resulting binary file, for Android, an .apk file, is returned and can then be downloaded to your desktop. You can preview the app using the FeedHenry studio at mobilecf.feedhenry.com.</p>
<p>Load the app onto the phone using email or Dropbox</p>
<p>That’s it – you have built and staged an app in 3 easy steps.</p>
<p>&nbsp;</p>
<p><strong>Note:</strong> Editing the code in the git repository can make changes to the server-side and the client-side functionality. Those changes can be uploaded to FeedHenry via a git pull request. The updated server-side code can be re-staged, and the updated client-side code can be used to build a new version of the app. To find out more about this template app, App-Anatomy, see FH App-Anatomy in the References.</p>
<h5>To get started go to <a href="https://mobilecf.feedhenry.com/">https://mobilecf.feedhenry.com</a></h5>
<h5>Additional information</h5>
<p>Installing vmc: http://start.cloudfoundry.com/tools/vmc/installing-vmc.html</p>
<p>Installing Node.js: http://nodejs.org/#download</p>
<p>Installing npm: http://npmjs.org/</p>
<p>Installing fhc: http://docs.feedhenry.com/our-tools-for-developers/fhc-command-line/</p>
<p>Cloning an app: http://docs.feedhenry.com/training-labs/fhc/creating-an-app-from-github/</p>
<p>FeedHenry App-Anatomy: http://docs.feedhenry.com/training-labs/app-labs/app-anatomy/</p>
<p>FeedHenry Android Build: http://docs.feedhenry.com/training-labs/fhc/creating-an-android-debug-build/</p>
<p>FeedHenry Staging to Cloud Foundry: http://docs.feedhenry.com/training-labs/fhc/creating-an-android-debug-build/#step3</p>
<p>&nbsp;</p>
<h5><a href="http://my.cloudfoundry.com/signup/feedhenry">Signup for Cloud Foundry</a> today, and start building your own mobile app!</h5>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feedhenry.com/2012/03/build-an-app-and-stage-to-cloud-foundry-in-3-easy-steps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FeedHenry launches Mobile Application Platform on Cloud Foundry™</title>
		<link>http://www.feedhenry.com/2012/03/feedhenry-launches-mobile-application-platform-on-cloud-foundrytm/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=feedhenry-launches-mobile-application-platform-on-cloud-foundrytm</link>
		<comments>http://www.feedhenry.com/2012/03/feedhenry-launches-mobile-application-platform-on-cloud-foundrytm/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 14:07:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[Cloud Foundry]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Mobile Application Platform]]></category>
		<category><![CDATA[Node.js]]></category>

		<guid isPermaLink="false">http://sites.feedhenry.com/corporate/?p=2170</guid>
		<description><![CDATA[FeedHenry, in partnership with Cloud Foundry, offers cross-platform mobile development solution fully integrated with a Platform-as-a-Service (PaaS) backend &#160; Boston, MA and Waterford, Ireland – March 06, 2012 – FeedHenry, (www.feedhenry.com), provider of enterprise mobility solutions for the development, deployment and management of mobile apps has just launched its Mobile Application Platform on Cloud Foundry [...]]]></description>
			<content:encoded><![CDATA[<p><em><span style="font-family: Calibri; font-size: small;">FeedHenry, in partnership with Cloud Foundry, offers cross-platform mobile development solution fully integrated with a Platform-as-a-Service (PaaS) backend<strong> </strong></span></em></p>
<p>&nbsp;</p>
<p><strong><span style="font-family: Calibri; font-size: small;">Boston, MA and Waterford, Ireland – March 06, 2012 –</span></strong> FeedHenry, (<a href="http://www.feedhenry.com/">www.feedhenry.com</a>), provider of enterprise mobility solutions for the development, deployment and management of mobile apps has just launched its Mobile Application Platform on Cloud Foundry</p>
<p>The majority of new application development is being done “mobile-first”. However, developers are building mobile frontend applications separately, and integrating with backend services manually. To leverage the benefits of PaaS for mobile applications, developers need a way to develop, deploy and scale these cross-platform applications on the PaaS in a seamless manner.</p>
<p>FeedHenry’s mobile application platform is the only cloud-based mobile application solution that allows developers to build HTML5, JavaScript and CSS apps with a fully integrated Node.js backend on Cloud Foundry.Developers can now use the FeedHenry solution to build and deploy mobile applications for many smartphones and tablets with backend functionality hosted on their CloudFoundry.com account.</p>
<p>“We are seeing a shift to mobile-first development within enterprises, which requires their PaaS solution to provide an integrated mobile development and deployment platform,” said Jerry Chen, vice president of cloud and application services at VMware. “FeedHenry’s cross-platform mobile development solution can make it easier and faster for Cloud Foundry<em><span style="font-family: Arial; font-size: x-small;">™</span></em> developers to build and deploy these applications.”</p>
<p>“Mobile apps are transforming how and where information is being consumed and how customers interact with organizations”, said Cathal McGloin, CEO, FeedHenry. “FeedHenry and VMware have partnered to bring a valuable solution that can enable developers speed of deployment, instant scalability, device and cloud independence with the ability to easily integrate to backend information.”</p>
<p>Developers can start building mobile applications today on the FeedHenry platform at <a href="https://mobilecf.feedhenry.com/">mobilecf.feedhenry.com.</a> New Cloud Foundry members can register and enter promotion code “<strong>feedhenry</strong>” while existing members gain immediate access from their account. All CloudFoundry.com developers will receive a free account on the FeedHenry platform, and have access to the FeedHenry web-based AppStudio development environment.  Cloud Foundry developers can download the <span style="color: black; font-family: Calibri;">FeedHenry Command Line tool to</span> use all of the features of the FeedHenry platform. The platform allows the use of any third party JavaScript library on the client side and any Javascript Node.js modules on the server-side.  The server-side business and integration logic is developed using JavaScript and developers can use any of the standard FeedHenry APIs for integration, caching, storage and encryption.</p>
<p>About FeedHenry</p>
<p>FeedHenry provides cloud-based Mobile Application Platform solutions that enable the development, deployment, integration and management of secure mobile apps for business. This mobile platform-as-a-service allows apps to be developed in HTML5, JavaScript, and CSS and deployed across all major mobile devices from a single code base. The node.js backend service offers a complete range of APIs designed to simplify and secure the connectivity of mobile apps to backend and third party systems. <strong> </strong></p>
<p>About Cloud Foundry</p>
<p>Cloud Foundry is an open platform as a service, providing a choice of clouds, developer frameworks and application services. Initiated by VMware, with broad industry support, Cloud Foundry makes it faster and easier to build, test, deploy and scale applications. It is an open source project and is available through a variety of public cloud instances, including CloudFoundry.com.</p>
<p><em><span style="color: black; font-family: Arial; font-size: x-small;">VMware and Cloud Foundry are registered trademarks and/or trademarks of VMware, Inc. in the United States and/or other jurisdictions. The use of the word “partner” or “partnership” does not imply a legal partnership relationship between VMware and any other company.</span></em></p>
<p><strong>Contacts:</strong></p>
<p><span style="font-family: Calibri; font-size: small;">FeedHenry</span><br />
<span style="font-family: Calibri; font-size: small;">Leonie Tierney</span><br />
<span style="font-family: Calibri; font-size: small;">Marketing Manager</span><br />
<span style="font-family: Calibri; font-size: small;">+1 781 799 8764</span><br />
<span style="font-family: Calibri; font-size: small;"><a href="mailto:leonie.tierney@feedhenry.com">leonie.tierney@feedhenry.com</a></span></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.feedhenry.com/2012/03/feedhenry-launches-mobile-application-platform-on-cloud-foundrytm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
