Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: third_party/gsutil/third_party/protorpc/demos/echo/README

Issue 1377933002: [catapult] - Copy Telemetry's gsutilz over to third_party. (Closed) Base URL: https://github.com/catapult-project/catapult.git@master
Patch Set: Rename to gsutil. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 Echo Service
2 ============
3
4 The echo service is a service that echos a request back to the caller. Useful
5 for testing and illustrates all data types in the forms interface.
6
7 Google App Engine
8 =================
9
10 For more information about Google App Engine, and to download the SDK, see:
11
12 http://code.google.com/appengine
13
14 Running locally
15 ===============
16
17 ProtoRPC is packaged with the App Engine SDK, but the version shipped
18 may not be the most current version due to the App Engine release
19 schedule. If you'd like to use the most current version of ProtoRPC,
20 you can install it in the echo directory.
21
22 For example on a unix-like OS, you could either copy:
23
24 $ cp -r $PROTORPC/python/protorpc $PROTORPC/demos/echo
25
26 or symlink the directory:
27
28 $ ln -s $PROTORPC/python/protorpc $PROTORPC/demos/echo/protorpc
29
30 To run this demo locally, you need to run an instance of the Google App
31 Engine dev-appserver. The server defaults on port 8080.
32
33 Example on a unix-like OS:
34
35 $ python $GAE_SDK/dev_appserver.py $PROTORPC/demos/echo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698