mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-14 11:06:55 -04:00
stackato support
This commit is contained in:
parent
a5fb1e33de
commit
0f2d542bbe
4 changed files with 17 additions and 1 deletions
3
app.js
Executable file
3
app.js
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
var server = require("ep_etherpad-lite/node/server.js");
|
8
package.json
Normal file
8
package.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"name": "etherpad-lite",
|
||||
"version": "0.0.1",
|
||||
"engines": {
|
||||
"node" : ">=0.6.0",
|
||||
"npm" : ">=1.0"
|
||||
}
|
||||
}
|
|
@ -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
5
stackato.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
name: etherpad-lite
|
||||
instances: 1
|
||||
framework:
|
||||
type: node
|
||||
mem: 128
|
Loading…
Add table
Add a link
Reference in a new issue