Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Implementing AppFog

You're reading from   Implementing AppFog Getting to grips with the AppFog service is easily achieved with this hands-on guide, which walks you through creating and deploying applications to the cloud. You'll be developing your first application in minutes.

Arrow left icon
Product type Paperback
Published in Nov 2013
Publisher Packt
ISBN-13 9781849698184
Length 86 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Toc

Creating an application


We could use the application we created and downloaded in Chapter 2, Using the Command Line Tool, however we are going to create a very new application. This application is also going to be a Sinatra application that displays some basic date and time information.

First, navigate to a new directory that will be used to contain the code. Everything in this directory will be uploaded to AppFog when we create the new application.

$ mkdir insideaf4
$ cd insideaf4

Now, create a new file called insideaf4.rb. The contents of the file should look like the following:

require 'sinatra'

get '/' do
  erb :index
end

As we saw in the previous chapter, this tells Sinatra to listen for requests to the base URL of / and then render the index page that we will create next.

If you are using Ruby 1.8.7, you may need to add the following line at the top, as described in Chapter 2, Using the Command Line Tool:

require 'rubygems'

Next, create a new directory called views under the insideaf4 directory...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image