| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
The Document Conversion service transforms HTML, PDF, and Microsoft™ Word documents into normalized HTML, plain text, or sets of Answer units. The Answer units can be run through a utility to convert it to the Solr JSON file type needed to train the Retrieve and Rank service.
Give it a try! Click the button below to fork into IBM DevOps Services and deploy your own copy of this application on Bluemix.
Sign up in Bluemix, or use an existing account. Watson Services in Beta are free to use.
Download and install the Cloud-foundry CLI tool
Edit the manifest.yml file and change the <application-name> to something unique.
applications:
- services:
- document-conversion-service
name: <application-name>
path: .
memory: 256M
The name you use will determinate your application url initially, e.g. <application-name>.mybluemix.net.
$ cf api https://api.ng.bluemix.net
$ cf login -u <your user ID>$ cf create-service document_conversion standard document-conversion-service$ cf pushThe application uses Node.js and npm so you will have to download and install them as part of the steps below.
Copy the credentials from your document-conversion-service service in Bluemix to app.js, you can see the credentials using:
$ cf env <application-name>Example output:
System-Provided:
{
"VCAP_SERVICES": {
"document_conversion": [{
"credentials": {
"url": "<url>",
"password": "<password>",
"username": "<username>"
},
"label": "document_conversion",
"name": "document-conversion-service",
"plan": "standard"
}]
}
}You need to copy username, password and url.
Install Node.js
Go to the project folder in a terminal and run: npm install
Start the application
npm start
Go to http://localhost:3000
.
├── app.js // express routes
├── config // express configuration
│ ├── error-handler.js
│ ├── express.js
│ └── security.js
├── manifest.yml
├── package.json
├── public // static resources
├── server.js // entry point
├── test // unit tests
├── training
│ └── weather_data_train.csv // training file
└── views // react components
To troubleshoot your Bluemix app the main useful source of information are the logs, to see them, run:
$ cf logs <application-name> --recentThis sample code is licensed under Apache 2.0. Full license text is available in COPYING.
See CONTRIBUTING.
Find more open source projects on the IBM Github Page
| Back | FazBrowse Home | New Git URL |