From d1ed8676a730f3992a48586f87683c276b1d8718 Mon Sep 17 00:00:00 2001 From: German Attanasio Ruiz Date: Wed, 23 Mar 2016 00:03:46 -0400 Subject: [PATCH] updated readme --- README.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0c1da368..08684a4c 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Visual Recognition Nodejs Starter Application -The [IBM Watson Visual Recognition service][visual_recognition_service] analyzes the visual content of images to understand the scene without any input text describing +[Visual Recognition][visual_recognition_service] partnered with [Alchemy Vision](www.alchemyapi.com/products/alchemyvision), allows you to derive insights from an image based on its visual content. You can organize image libraries, understand an individual image, and create custom classifiers for specific results that are tailored to your needs. Give it a try! Click the button below to fork into IBM DevOps Services and deploy your own copy of this application on Bluemix. @@ -37,21 +37,26 @@ applications: $ cf create-service visual_recognition free visual-recognition-service ``` -6. Push it live! +6. Create the Alchemy service in Bluemix or copy your existing key into `ALCHEMY_KEY` in `app.js` + ```sh + $ cf create-service alchemy_api free alchemy-service + ``` + +7. Push it live! ```sh $ cf push ``` - + 7. Optional Security and Performance enhancements Set `NODE_ENV=production` to enable view caching and other performance enhancements: - + ```sh $ cf set-env NODE_ENV production ``` - + Set `SECURE_EXPRESS=1` to enable rate-limiting, HTTPS-only, and several other security features: - + ```sh $ cf set-env SECURE_EXPRESS 1 ```