1
0
ohmyform/server.js

98 lines
2.6 KiB
JavaScript
Raw Normal View History

2015-06-29 15:51:29 -07:00
'use strict';
/**
* Module dependencies.
*/
var fs = require('fs')
var https = require('https')
2016-05-20 14:11:37 -07:00
2017-10-18 17:27:07 -07:00
require('dotenv').config({path: './.env'});
2017-10-18 17:18:18 -07:00
if(!process.env.NODE_ENV){
process.env.NODE_ENV = 'development';
}
var pkey = fs.readFileSync('/etc/letsencrypt/live/register.earlybird.camp/privkey.pem')
var cert = fs.readFileSync('/etc/letsencrypt/live/register.earlybird.camp/fullchain.pem')
2016-05-20 14:11:37 -07:00
2016-11-09 10:02:12 -08:00
require('events').EventEmitter.prototype._maxListeners = 0;
var config = require('./config/config'),
2015-06-29 15:51:29 -07:00
mongoose = require('mongoose'),
2017-11-06 13:44:29 -08:00
chalk = require('chalk'),
nodemailer = require('nodemailer');
2015-06-29 15:51:29 -07:00
/**
* Main application entry file.
* Please note that the order of loading is important.
*/
// Bootstrap db connection
var db = mongoose.connect(config.db.uri, config.db.options, function (err) {
2015-06-29 15:51:29 -07:00
if (err) {
console.error(chalk.red('Could not connect to MongoDB!'));
console.log(chalk.red(err));
}
});
mongoose.connection.on('error', function (err) {
2015-06-29 15:51:29 -07:00
console.error(chalk.red('MongoDB connection error: ' + err));
process.exit(-1);
2015-08-11 13:32:27 -07:00
});
2015-06-29 15:51:29 -07:00
2017-11-06 13:44:29 -08:00
const smtpTransport = nodemailer.createTransport(config.mailer.options);
console.log("GOT PAST MONGOOSE")
2017-11-06 13:44:29 -08:00
// verify connection configuration on startup
smtpTransport.verify(function(error, success) {
if (error) {
console.error(chalk.red('Your mail configuration is incorrect: ' + error));
process.exit(-1);
}
});
2015-06-29 15:51:29 -07:00
// Init the express application
var app = require('./config/express')(db);
2017-04-03 13:28:24 -07:00
//Create admin account
if (process.env.CREATE_ADMIN_ACCOUNT === 'TRUE') {
var create_admin = require('./scripts/create_admin');
create_admin.run(app, db, function(err){
if(err){
console.error(chalk.red('Could not create Admin Account: ' + err));
}
});
}
2015-06-29 15:51:29 -07:00
// Bootstrap passport config
require('./config/passport')();
console.log("Got past passport!")
2015-06-29 15:51:29 -07:00
// Start the app by listening on <port>
app.listen(80, () => console.log("Listening"));
console.log("Got past Listen1")
//https.createServer({key: pkey, cert: cert}, app).listen(config.port, () => {
// console.log('Listening on 443')
//})
2015-06-29 15:51:29 -07:00
console.log("GOT PAST LISTEN");
2015-06-29 15:51:29 -07:00
// Expose app
exports = module.exports = app;
// Logging initialization
console.log('--');
console.log(chalk.green('Environment:\t\t\t' + process.env.NODE_ENV));
console.log(chalk.green('Port:\t\t\t\t' + config.port));
console.log(chalk.green('Database:\t\t\t' + config.db.uri));
if (process.env.NODE_ENV === 'secure') {
console.log(chalk.green('HTTPs:\t\t\t\ton'));
}
console.log('--');
2016-05-20 13:28:27 -07:00
process.on('uncaughtException', function (err) {
console.error((new Date()).toUTCString() + ' uncaughtException:', err.message);
2016-05-20 13:28:27 -07:00
console.error(err.stack);
2016-05-20 14:11:37 -07:00
process.exit(1);
2017-10-18 17:18:18 -07:00
});