-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
39 lines (25 loc) · 999 Bytes
/
config.js
1
//global objectvar config = {}; //name of this application config.name = "LiveWall"; //version config.version = "testing"; config.debug = false; //canvas dimensions config.canvas_width = 800; config.canvas_height = 500; //defines all the web configurationsconfig.web = {}; //the qualified server name. //note: if using localhost be aware that only pages loaded on localhost will work. //note: this should either be a url (www.example.com) or an IPAddress (192.168.1.2) config.web.servername = '10.1.1.4'; //note using port 80 requires su access when running config.web.port = 8080; //public html directory (to serve clients) config.web.public_dir = __dirname + '/public/'; //temp directory to store snapshots of the wall config.web.temp_dir_name = '/temp/'; config.web.temp_dir = config.web.public_dir + config.web.temp_dir_name; //export itmodule.exports = config;