Skip to content

Commit

Permalink
Added dependency 'pixl-perf' as it was forgotten. Sorry pixl-perf!
Browse files Browse the repository at this point in the history
A small tweak in the install script text.
Bumped to v0.0.2 to test upgrade process.
  • Loading branch information
jhuckaby committed Jan 8, 2016
1 parent e1245b6 commit e5c97d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion bin/storage-cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -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" );
}
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"homepage": "https://github.com/jhuckaby/Cronicle",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit e5c97d9

Please sign in to comment.