AbhishekShrivastava / discovery-nodejs

This is the Watson Discovery Service Demo

Home Page:https://discovery-news-demo.mybluemix.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Discovery Demo Build Status

Use the IBM Watson Discovery service to add a cognitive search and content analytics engine to your applications to identify patterns, trends and actionable insights that drive better decision-making.

Demo

Demo: https://discovery-news-demo.mybluemix.net/

Getting started

To deploy this repository as-is, click the "Deploy to Bluemix" button

Deploy to Bluemix

When this button is clicked, it will begin the process of creating a deployment toolchain based on the master branch of the repo into Bluemix and you will have to modify the application name to the name of the host you want to put it at. The default will get mapped to {organization/user}-{repo_name}-{timestamp}.

After creating the toolchain, you must either run the deployment script as part of the Continuous Delivery which will create the service for you, or refer to the Setup a IBM Watson Discovery Service section below to create it manually.

For more details about developing applications that use Watson Developer Cloud services in Bluemix, see Getting started with Watson Developer Cloud and Bluemix.

Development

Setup a IBM Watson Discovery Service

  1. You need a Bluemix account. If you don't have one, sign up.

  2. Download and install the Cloud-foundry CLI tool if you haven't already.

  3. Connect to Bluemix with the command line tool.

    cf api https://api.ng.bluemix.net
    cf login
  4. Create and retrieve service keys to access the Discovery service:

    cf create-service discovery standard Discovery-Demo
    cf create-service-key Discovery-Demo myKey
    cf service-key Discovery-Demo myKey
    
  5. Create an .env file in the root directory by copying the sample .env.example file using the following command:

    cp .env.example .env
    

    Update the .env with your service instance information from step 4

    The .env file will look something like the following:

    DISCOVERY_USERNAME=<username>
    DISCOVERY_PASSWORD=<password>
    

Run the demo locally

  1. Install the needed application dependencies with this command:

    npm install
    
  2. Start the application locally:

  3. in one tab, run (client runs on port 3000)

    npm start
    
  4. in another tab, run (server runs on port 5000)

    node server.js
    
  5. Point your browser to http://localhost:3000.

You may build the optimized production build by running npm run build. Then you only require to run the node server.js to see your code hosted at http://localhost:5000

Troubleshooting

  • The main source of troubleshooting and recovery information is the Bluemix log. To view the log, run this command:

    cf logs <your application name> --recent
  • For more details about the service, see the documentation for the Discovery service.


Directory structure

.
├── app.js                      // express routes
├── config                      // express configuration
│   ├── error-handler.js
│   ├── express.js
│   └── security.js
├── package.json
├── public                      // static resources
├── server.js                   // entry point
├── test                        // integration tests
└── src                         // react client
    ├── __test__                // unit tests
    └── index.js                // app entry point

License

This sample code is licensed under Apache 2.0.

Contributing

See CONTRIBUTING.

Open Source @ IBM

Find more open source projects on the IBM Github Page

Privacy Notice

Sample web applications that include this package may be configured to track deployments to IBM Bluemix and other Cloud Foundry platforms. The following information is sent to a Deployment Tracker service on each deployment:

  • Node.js package version
  • Node.js repository URL
  • Application Name (application_name)
  • Space ID (space_id)
  • Application Version (application_version)
  • Application URIs (application_uris)
  • Labels of bound services
  • Number of instances for each bound service and associated plan information

This data is collected from the package.json file in the sample application and the VCAP_APPLICATION and VCAP_SERVICES environment variables in IBM Bluemix and other Cloud Foundry platforms. This data is used by IBM to track metrics around deployments of sample applications to IBM Bluemix to measure the usefulness of our examples, so that we can continuously improve the content we offer to you. Only deployments of sample applications that include code to ping the Deployment Tracker service will be tracked.

About

This is the Watson Discovery Service Demo

https://discovery-news-demo.mybluemix.net


Languages

Language:JavaScript 72.7%Language:CSS 26.1%Language:Shell 0.7%Language:HTML 0.4%