mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-04 22:27:10 -04:00

Add - Entry point server.js - Load port and mysql configuraion from env variable - Tunable polling duration
5 lines
163 B
JavaScript
5 lines
163 B
JavaScript
// Entry point for etherpad running on cloudfoundry
|
|
var path = require('path')
|
|
process.chdir( path.join( process.cwd(), 'node'))
|
|
|
|
var s = require("./node/server")
|