chore(maintenance): version bump

This commit is contained in:
Sean Wells 2016-06-29 11:23:38 -07:00
Родитель 9add7c4d9b
Коммит edf4a855ab
3 изменённых файлов: 21 добавлений и 16 удалений

Просмотреть файл

@ -7,7 +7,7 @@ Example use of DeployR as a real-time, R analytics scoring engine.
There are two ways to install the _js-example-fraud-score_ example:
1. The preferred way is to use the [DeployR command line interface](https://github.com/deployr/deployr-cli) (CLI) to install.
1. The preferred way is to use the [DeployR command line interface](https://github.com/microsoft/deployr-cli) (CLI) to install.
2. [Manual Installation](#manual-installation) without the DeployR CLI.
@ -185,11 +185,11 @@ file `config/config.json` as appropriate:
```
{
"endpoint": "http://localhost:7300",
"endpoint": "http://localhost:8.0.5",
"port": "9080",
"credentials": {
"username": "testuser",
"password": "changeme"
"password": "TESTUSER_PASSWORD"
},
"logging": false,
"constants" : {
@ -203,13 +203,19 @@ file `config/config.json` as appropriate:
To run this example application:
```
$ cd js-example-fraud-score
```
1. Set the DeployR `endpoint` and the appropriate `credentials`
```
$ npm start
```
2.
```
$ cd js-example-fraud-score
```
3.
```
$ npm start
```
Observe the console output in your terminal window to determine if the server
application has started successfully. Once started, open the client application

Просмотреть файл

@ -1,9 +1,9 @@
{
"endpoint": "http://localhost:7300",
"endpoint": "http://localhost:8050",
"port": "9080",
"credentials": {
"username": "testuser",
"password": "changeme"
"password": "TESTUSER_PASSWORD"
},
"logging": false,
"constants" : {

Просмотреть файл

@ -1,9 +1,9 @@
{
"name": "js-example-fraud-score",
"version": "0.0.2",
"version": "0.0.3",
"private": "true",
"description": "R Analytics Fraud Score Example Application - Powered by DeployR RBroker Framework",
"repository": "https://github.com/deployr/js-example-fraud-score.git",
"repository": "https://github.com/microsoft/js-example-fraud-score.git",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
@ -11,18 +11,17 @@
"author": "DeployR - Revolution Analytics Inc.",
"main": "server.js",
"dependencies": {
"deployr": "^7.4.3",
"express": "^4.9.5",
"primus": "^2.4.8",
"primus.io": "^3.1.2",
"primus-multiplex": "^3.0.3",
"primus-emitter": "^3.0.3",
"primus-rooms": "^3.1.0",
"rbroker": "^7.4.0",
"rbroker": "8.0.5",
"ws": "^0.4.32"
},
"devDependencies": {
"browserify": "^5.10.0"
},
"license": "Apache License 2.0"
"license": "Apache-2.0""
}