import './CheckEnvironment.js'; import './DataCollection.js'; import '../imports/api/'; import './google-oauth.js'; import '/imports/startup/accounts-config.js'; import './logging'; //Currently all the websocket based reporting is done via the data collection system. //import './websocket' //Some basic testing of detecting which mode the app is running under... // // if(process.env.NODE_ENV === "development") { // console.log("In Dev Mode"); // } // else if(process.env.NODE_ENV === "production") { // console.log("In Prod Mode"); // } // else { // console.log("No idea what mode we are in!"); // } //TEST LOG OUTPUT... // let obj = {test: 'abc'}; // console.log("Test Output"); // console.log(obj); // // try { // throw Exception("Error!!"); // } // catch(err) { // console.error(err); // }