From 8de691b914a0c84a2131c630913b6f295911dc40 Mon Sep 17 00:00:00 2001 From: Soam Vasani Date: Tue, 8 Nov 2016 00:45:38 -0800 Subject: [PATCH] Ensure markdown doesn't re-wrap lines that are commands --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 4620d47f..1e40b977 100644 --- a/README.md +++ b/README.md @@ -44,18 +44,25 @@ FISSION_URL and FISSION_ROUTER, respectively. ### Install the client CLI $ curl http://fission.io/fission > fission + $ chmod +x fission + $ sudo mv fission /usr/local/bin/ ### Run an example $ fission env create --name nodejs --image fission/node-env + $ echo 'module.exports = function(context, callback) { callback(200, "Hello, world!\n"); }' > hello.js + $ fission function create --name hello --env nodejs --code hello.js + $ fission route create --method GET --url /hello --function hello + $ curl http://$FISSION_ROUTER/hello Hello, world! + Status ======