Let's begin by implementing a tiny application that displays a short message.
Creating a Simple Script
Create a directory named
helloworld
. All files for this application reside in this directory.
Inside the
helloworld
directory, create a file named
helloworld.php
, and give it the following contents:
This PHP script responds to all requests with the message
Hello, world!
.
Creating the Configuration File
An App Engine application has a configuration file called
app.yaml
. Among other things, this file describes which handler scripts should be used for which URLs.
Inside the
helloworld
directory, create a file named
app.yaml
with the following contents:
From top to bottom, this configuration file says the following about this application:
-
The application identifier is
helloworld
. Every new application on App Engine has a unique application identifier. You'll choose the identifier for your application when you register it in the next step. Until then you can just leave the value here set tohelloworld
because this value is not important when developing locally. -
This is version number
1
of this application's code. If you adjust this before uploading new versions of your application software, App Engine will retain previous versions, and let you roll back to a previous version using the administrative console. -
This code runs in the
php
runtime environment, version "1". Additional runtime environments and languages may be supported in the future. -
Every request to a URL whose path matches the regular expression
/.*
(all URLs) should be handled by thehelloworld.php
script.
The syntax of this file is YAML . For a complete list of configuration options, see the app.yaml reference .
Testing the Application
With a handler script and configuration file mapping every URL to the handler, the application is complete. You can now test it with the web server included with the App Engine SDK.
If you're using the Google App Engine Launcher, you can set up the application by selecting the
File
menu,
Add Existing Application...
, then selecting the
helloworld
directory. Select the application in the app list, click the
Run
button to start the application, then click the
Browse
button to view it. Clicking
Browse
simply loads (or reloads)
http://localhost:8080/
in your default web browser.
If you're not using Google App Engine Launcher, start the web server with the following command, giving it the path to the
helloworld
directory:
google_appengine/dev_appserver.py helloworld/
The web server is now running, listening for requests on port 8080. You can test the application by visiting the following URL in your web browser:
For more information about running the development web server, including how to change which port it uses, see
the Dev Web Server reference
, or run the command with the option
--help
.
Next...
You now have a complete App Engine application! You could deploy this simple greeting right now and share it with users worldwide. But before we deploy it, let's take a closer look some more interesting App Engine features.