Hello World from OSS Silicon Valley


HowToUse/Python/2.7/GoogleAppEngine/1.9

#contents

*Prerequisite [#i469bbfe]
-Ubuntu Server installation (You can refer [[HowToUse/UbuntuServer/14.04]])

*Install&Setup [#w796d593]
:Step.1|
Install GoogleAppEngine SDK.

*HowToUse [#zb58dae2]
:Step.1|
Create app.yaml

 $ mkdir <project directory>
 $ cd <project directory>
 $ vi app.yaml

You can refer sample [[here:https://github.com/osssv/osssv-helloworld/blob/master/gae/1.9/helloworld/app.yaml]]

:Step.2|
Create main.py

 $ vi main.py

You can refer sample [[here:https://github.com/osssv/osssv-helloworld/blob/master/gae/1.9/helloworld/main.py]]

:Step.3|
Launch instance.

 $ dev_appserver.py .

Then you can see the sample web site from http://localhost:8080


*Author [#vbadca3a]
S.Yatsuzuka