From 3eafbea484b993bb0f59e90cb05860d5517dc526 Mon Sep 17 00:00:00 2001 From: Brian Lamar Date: Tue, 24 May 2011 12:40:46 -0400 Subject: Added examples readme --- examples/README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 examples/README.md diff --git a/examples/README.md b/examples/README.md new file mode 100644 index 00000000..17bffe5c --- /dev/null +++ b/examples/README.md @@ -0,0 +1,24 @@ +RUNNING THE TEST SERVICE (Echo.py): +---------------------------------- + + Standalone stack (with Auth_Token) + $ cd echo/bin + $ ./echod + + Distributed stack (with RemoteAuth local and Auth_Token remote) + $ cd echo/bin + $ ./echod --remote + + in separate session + $ cd keystone/auth_protocols + $ python auth_token.py + + +DEMO CLIENT: +------------ +A sample client that gets a token from Keystone and then uses it to call Echo (and a few other example calls): + + $ cd echo/echo + $ python echo_client.py + Note: this requires test data. See section TESTING for initializing data + -- cgit