Skip to content

Commit

Permalink
inital project commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ANDREW M. TRICE committed Jul 13, 2015
1 parent 2ad5abd commit 8232ed9
Show file tree
Hide file tree
Showing 74 changed files with 9,416 additions and 204 deletions.
40 changes: 40 additions & 0 deletions .settings/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"version": "0.1.0",
// List of configurations. Add new configurations or edit existing ones.
// ONLY "node" and "mono" are supported, change "type" to switch.
"configurations": [
{
// Name of configuration; appears in the launch configuration drop down menu.
"name": "Launch app.js",
// Type of configuration. Possible values: "node", "mono".
"type": "node",
// Workspace relative or absolute path to the program.
"program": "app.js",
// Automatically stop program after launch.
"stopOnEntry": false,
// Command line arguments passed to the program.
"args": [],
// Workspace relative or absolute path to the working directory of the program being debugged. Default is the current workspace.
"cwd": ".",
// Workspace relative or absolute path to the runtime executable to be used. Default is the runtime executable on the PATH.
"runtimeExecutable": null,
// Optional arguments passed to the runtime executable.
"runtimeArgs": [],
// Environment variables passed to the program.
"env": { },
// Use JavaScript source maps (if they exist).
"sourceMaps": false,
// If JavaScript source maps are enabled, the generated code is expected in this directory.
"outDir": null
},
{
"name": "Attach",
"type": "node",
// TCP/IP address. Default is "localhost".
"address": "localhost",
// Port to attach to.
"port": 5858,
"sourceMaps": false
}
]
}
16 changes: 16 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Questions

If you are having difficulties running the app or have a question about the service, please ask a question on [dW Answers](https://developer.ibm.com/answers/questions/ask/?topics=watson) or [Stack Overflow](http://stackoverflow.com/questions/ask?tags=ibm-watson).

# Issues

If you encounter an issue with this sample app, you are welcome to submit a [bug report](https://github.com/germanattanasio/IBMWatson-QA-Speech/issues). Before that, please search for similar issues. It's possible somebody has encountered this issue already.

# Pull Requests

If you want to contribute to the reporistoy, here's a quick guide:

1. Fork the repo.
1. develop your code changes: `npm install -d`
1. Commit your changes
1. Push to your fork and submit a pull request
202 changes: 0 additions & 202 deletions LICENSE

This file was deleted.

19 changes: 19 additions & 0 deletions NOTICE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

(c) Copyright IBM Corporation 2014

DISCLAIMER OF WARRANTIES.
The enclosed code is sample code created by IBM
Corporation. This sample code is not part of any standard or IBM
product and is provided to you solely for the purpose of assisting
you in the development of your applications. The code is provided
"AS IS". IBM MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT
NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE, REGARDING THE FUNCTION OR PERFORMANCE OF
THIS CODE. IBM shall not be liable for any damages arising out of
your use of the sample code, even if they have been advised of the
possibility of such damages.

DISTRIBUTION.
This sample code can be freely distributed, copied, altered, and
incorporated into other software, provided that it bears the above
Copyright notice and DISCLAIMER intact.
Loading

0 comments on commit 8232ed9

Please sign in to comment.