1
0
Fork 0

Fix CoffeeScript Dependency

packages.json did not include coffee-script.  The dependency has been
added and the README file updated to note the local method for starting
the application.
This commit is contained in:
Andrew Tomaka 2013-02-20 22:49:15 -05:00
parent f4ebe7536f
commit f937337d9f
2 changed files with 8 additions and 1 deletions

View File

@ -26,6 +26,12 @@ $ cp config/database.coffee.sample database.coffee
##Usage
```
$ ./node_modules/coffee-script/bin/coffee dbmonitor.coffee
```
or with global coffee-script install:
```
$ coffee dbmonitor.coffee
```

View File

@ -6,6 +6,7 @@
"dependencies": {
"mysql-native": "0.4.x",
"socket.io": "0.9.x",
"moment": "1.7.x"
"moment": "1.7.x",
"coffee-script": "1.3.x"
}
}