From b97bf9c48dfa26b2e3173c6f34fbac7ddaa45b13 Mon Sep 17 00:00:00 2001 From: Alex Ellis Date: Mon, 17 Jul 2017 17:07:31 +0100 Subject: [PATCH] Move star reference to TestDrive --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 78d112f0..bb2a16cd 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ FaaS is a framework for building serverless functions with Docker which has firs **Highlights** * Ease of use through UI portal and *one-click* install -* CLI available with YAML format for templating and defining functions +* [CLI](http://github.com/alexellis/faas-cli) available with YAML format for templating and defining functions * Write functions in any language for Linux or Windows and package in Docker/OCI image format * Portable - runs on existing hardware or public/private cloud * Auto-scales as demand increases @@ -30,12 +30,10 @@ FaaS is a framework for building serverless functions with Docker which has firs ### CLI -Any container or process in a Docker container can be a serverless function in FaaS. Using the FaaS CLI you can deploy your functions or quickly create new functions from templates such as Node.js or Python. +Any container or process in a Docker container can be a serverless function in FaaS. Using the [FaaS CLI](http://github.com/alexellis/faas-cli) you can deploy your functions or quickly create new functions from templates such as Node.js or Python. **CLI walk-through** -> It would help the project if you could **Star** the Github repository. This helps support the FaaS project which is free and Open Source Software. - Let's have a quick look at an example function `url_ping` which connects to a remote web server and returns the HTTP code from the response. It's written in Python. ```