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

Unified Diff: third_party/gsutil/third_party/protorpc/demos/guestbook/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, 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/gsutil/third_party/protorpc/demos/guestbook/README
diff --git a/third_party/gsutil/third_party/protorpc/demos/guestbook/README b/third_party/gsutil/third_party/protorpc/demos/guestbook/README
new file mode 100644
index 0000000000000000000000000000000000000000..12dae2326db9904246b2ac0a999b089b112ba5ff
--- /dev/null
+++ b/third_party/gsutil/third_party/protorpc/demos/guestbook/README
@@ -0,0 +1,40 @@
+Guestbook Service
+=================
+
+This sample contains two sample ProtoRPC services that allow users to
+sign a guestbook. The two applications act as client and server.
+
+Google App Engine
+=================
+
+For more information about Google App Engine, and to download the SDK, see:
+
+ http://code.google.com/appengine
+
+Running locally
+===============
+
+ProtoRPC is packaged with the App Engine SDK, but the version shipped
+may not be the most current version due to the App Engine release
+schedule. If you'd like to use the most current version of ProtoRPC,
+you can install it in the guestbook/client and guestbook/server
+directories.
+
+For example on a unix-like OS, you could either copy:
+
+ $ cp -r $PROTORPC/python/protorpc $PROTORPC/demos/guestbook/client
+ $ cp -r $PROTORPC/python/protorpc $PROTORPC/demos/guestbook/server
+
+or symlink the directory:
+
+ $ ln -s $PROTORPC/python/protorpc $PROTORPC/demos/guestbook/client/protorpc
+ $ ln -s $PROTORPC/python/protorpc $PROTORPC/demos/guestbook/server/protorpc
+
+To run this demo locally, you need to run an instance of the Google App
+Engine dev-appserver both for the client and the server. The dev-appserver
+defaults on port 8080, so use different ports to avoid a port collision.
+
+Example on a unix-like OS:
+
+ $ python $GAE_SDK/dev_appserver.py --port=8080 $PROTORPC/demos/guestbook/client &
+ $ python $GAE_SDK/dev_appserver.py --port=8081 $PROTORPC/demos/guestbook/server

Powered by Google App Engine
This is Rietveld 408576698