You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.error("You must have a settings.js file. Take a look at settings.js.example. https://github.com/AmericanRedCross/OpenMapKitServer/blob/master/settings.js.example");
process.exit();
}
varserver=require('./index');
varport=process.env.PORT||settings.port;
// Build checksum blacklists for each form, then start the API
checksumBlacklistHelper.create(function(err){
if(err){
console.error(err);
return;
}
server.listen(port,function(){
console.log('OpenMapKit Server is listening on port %s.',port);