Created
March 21, 2012 14:19
-
-
Save s3u/2147268 to your computer and use it in GitHub Desktop.
Options to disable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var options = { | |
cluster: false, | |
port: process.env.VCAP_APP_PORT || 3000, | |
monPort: 3001, | |
config: cwd + '/config/dev.json', | |
tables: cwd + '/tables', | |
routes: cwd + '/routes', | |
xformers: cwd + '/config/xformers.json', | |
disableConsole: true, | |
disableQ: true, | |
ecv: { | |
monitor: '/tables', | |
validator: function(status, headers, data) { | |
return JSON.parse(data); | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment