stackato support

This commit is contained in:
Robert Helmer 2013-01-23 11:53:08 -08:00
parent a5fb1e33de
commit 0f2d542bbe
4 changed files with 17 additions and 1 deletions

3
app.js Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env node
var server = require("ep_etherpad-lite/node/server.js");

8
package.json Normal file
View file

@ -0,0 +1,8 @@
{
"name": "etherpad-lite",
"version": "0.0.1",
"engines": {
"node" : ">=0.6.0",
"npm" : ">=1.0"
}
}

View file

@ -45,7 +45,7 @@ exports.faviconTimeslider = "../../" + exports.favicon;
/**
* The IP ep-lite should listen to
*/
exports.ip = "0.0.0.0";
exports.ip = process.env.VCAP_APP_HOST || "0.0.0.0";
/**
* The Port ep-lite should listen to

5
stackato.yml Normal file
View file

@ -0,0 +1,5 @@
name: etherpad-lite
instances: 1
framework:
type: node
mem: 128