diff --git a/README.md b/README.md index 7cf3d927..bb90df7f 100644 --- a/README.md +++ b/README.md @@ -2464,6 +2464,7 @@ In addition, Cronicle uses the following standalone PixlCore utility modules: | [pixl-json-stream](https://www.npmjs.com/package/pixl-json-stream) | Provides an easy API for sending and receiving JSON records over standard streams (pipes or sockets). | MIT | | [pixl-logger](https://www.npmjs.com/package/pixl-logger) | A simple logging class which generates bracket delimited log columns. | MIT | | [pixl-mail](https://www.npmjs.com/package/pixl-mail) | A very simple class for sending e-mail via SMTP. | MIT | +| [pixl-perf](https://www.npmjs.com/package/pixl-perf) | A simple, high precision performance tracking system. | MIT | | [pixl-request](https://www.npmjs.com/package/pixl-request) | A very simple module for making HTTP requests. | MIT | | [pixl-tools](https://www.npmjs.com/package/pixl-tools) | A set of miscellaneous utility functions for Node.js. | MIT | | [pixl-webapp](https://www.npmjs.com/package/pixl-webapp) | A client-side JavaScript framework, designed to be a base for web applications. | MIT | diff --git a/bin/storage-cli.js b/bin/storage-cli.js index 7e4cd3da..9b01ec69 100755 --- a/bin/storage-cli.js +++ b/bin/storage-cli.js @@ -127,7 +127,7 @@ var storage = new StandaloneStorage(config.Storage, function(err) { print( "\nSetup completed successfully!\n" ); print( "This server ("+hostname+") has been added as the single primary master server.\n" ); print( "An administrator account has been created with username 'admin' and password 'admin'.\n" ); - print( "You should now be able to start the service by typing: 'bin/control.sh start'\n" ); + print( "You should now be able to start the service by typing: '/opt/cronicle/bin/control.sh start'\n" ); print( "Then, the web interface should be available at: http://"+hostname+":"+config.WebServer.http_port+"/\n" ); print( "Please allow for up to 60 seconds for the server to become master.\n\n" ); } diff --git a/package.json b/package.json index 2ec83d3c..e788eede 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Cronicle", - "version": "0.0.1", + "version": "0.0.2", "description": "A simple, distributed task scheduler and runner with a web based UI.", "author": "Joseph Huckaby ", "homepage": "https://github.com/jhuckaby/Cronicle", @@ -50,6 +50,7 @@ "pixl-json-stream": "^1.0.0", "pixl-request": "^1.0.0", "pixl-mail": "^1.0.0", + "pixl-perf": "^1.0.0", "pixl-server": "^1.0.0", "pixl-server-storage": "^1.0.0", "pixl-server-web": "^1.0.0",