This Devoxx Sherlock IBM Watson project allows you to upload audio files and articles which are processed by different Watson services like Concept Insights, Speech to Text and Alchemy Language.
- Download and install IBM Eclipse Tools for Bluemix.
- In the Servers view of Eclipse, right-click to create a new WAS Liberty server. Follow the steps in the wizard, which includes the option to download and install the WAS Liberty runtime.
- Import the project into Eclipse using File -> Import -> Maven -> Existing Maven Projects option.
- TODO Deploy
- TODO Go to
- Download and install IBM Eclipse Tools for Bluemix.
- In the Servers view of Eclipse, right-click to create a new IBM Bluemix server. Follow the steps in the wizard.
- Import this sample into Eclipse using File -> Import -> Maven -> Existing Maven Projects option.
- Deploy the project into Bluemix server.
You need to create an application.properties file in /src/main/resources/ with your Watson credentials & api-keys
# Speech to text credentials
speech.username=<ADD YOUR CREDENTIALS FOR SPEECH>
speech.password=<ADD YOUR CREDENTIALS FOR SPEECH>
# ConceptInsights credentials
insight.username=<ADD YOUR CREDENTIALS FOR CONCEPT INSIGHTS>
insight.password=<ADD YOUR CREDENTIALS FOR CONCEPT INSIGHTS>
# Translation credentials
translate.username=<ADD YOUR CREDENTIALS FOR TRANSLATE>
translate.password=<ADD YOUR CREDENTIALS FOR TRANSLATE>
# Please don't change this 'sandbox' corpus name
corpus.name=devoxx_sandbox_corpus
# Alchemy credentials
alchemy.apikey=<ADD YOUR API-KEY FOR ALCHEMY>
This project can be build with Apache Maven. The project uses [Liberty Maven Plug-in][] to automatically download and install Liberty profile runtime from the Liberty repository. Liberty Maven Plug-in is also used to create, configure, and run the application on the Liberty server.
Use the following steps to run the application with Maven:
-
Execute full Maven build. This will cause Liberty Maven Plug-in to download and install Liberty profile server.
$ mvn clean install
-
To run a local Liberty server with the JavaHelloWorldApp sample execute:
$ mvn liberty:run-server
Once the server is running, the application will be available under http://localhost:9080/SherlockWatsonUploaderProcessor.
- To push the application to Bluemix using the cf command line tool:
$ cf push <appname> -p target/DevoxxWatsonAudioFileProcessor.war
- Surf to http://sherlock.devoxx.com/swagger/
- Enter http://sherlock.devoxx.com/v2/api-docs
- You can now explore the Search REST method
Watch Stephan Janssen and Sandhya Kapoor explain the Devoxx Sherlock project during DevoxxUK
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.