2016-05-03 04:09:16 +00:00
|
|
|
import Express from 'express';
|
2016-05-13 20:04:16 +00:00
|
|
|
import mongoose from 'mongoose';
|
|
|
|
import bodyParser from 'body-parser';
|
|
|
|
import cookieParser from 'cookie-parser';
|
|
|
|
import session from 'express-session';
|
|
|
|
import passport from 'passport';
|
2016-05-03 04:09:16 +00:00
|
|
|
import path from 'path';
|
|
|
|
|
|
|
|
//Webpack Requirements
|
|
|
|
import webpack from 'webpack';
|
|
|
|
import config from '../webpack.config';
|
|
|
|
import webpackDevMiddleware from 'webpack-dev-middleware';
|
|
|
|
import webpackHotMiddleware from 'webpack-hot-middleware';
|
|
|
|
|
|
|
|
const app = new Express();
|
|
|
|
|
|
|
|
//add check if production environment here
|
|
|
|
const compiler = webpack(config);
|
|
|
|
app.use(webpackDevMiddleware(compiler, { noInfo: true, publicPath: config.output.publicPath }));
|
|
|
|
app.use(webpackHotMiddleware(compiler));
|
|
|
|
|
|
|
|
//Import all required modules
|
|
|
|
import serverConfig from './config';
|
2016-06-09 00:52:59 +00:00
|
|
|
import users from './routes/user.routes';
|
2016-05-03 04:09:16 +00:00
|
|
|
|
2016-05-13 20:04:16 +00:00
|
|
|
//Body parser, cookie parser, sessions, serve public assets
|
2016-05-17 19:50:37 +00:00
|
|
|
|
2016-05-13 20:49:56 +00:00
|
|
|
app.use(Express.static(path.resolve(__dirname, '../static')));
|
2016-05-13 20:04:16 +00:00
|
|
|
app.use(bodyParser.urlencoded({extended: true}));
|
|
|
|
app.use(bodyParser.json());
|
|
|
|
app.use(cookieParser());
|
|
|
|
app.use(passport.initialize());
|
|
|
|
app.use(passport.session());
|
2016-05-13 20:49:56 +00:00
|
|
|
app.use(Express.static(path.resolve(__dirname, '../static')));
|
2016-05-13 20:04:16 +00:00
|
|
|
app.use(bodyParser.urlencoded({extended: true}));
|
|
|
|
app.use(bodyParser.json());
|
|
|
|
app.use(cookieParser());
|
|
|
|
app.use(passport.initialize());
|
|
|
|
app.use(passport.session());
|
2016-06-09 00:52:59 +00:00
|
|
|
app.use('/', users);
|
2016-05-03 04:09:16 +00:00
|
|
|
|
2016-05-17 19:50:37 +00:00
|
|
|
const passportConfig = require('./config/passport');
|
|
|
|
|
2016-06-09 17:56:23 +00:00
|
|
|
//Connect to MongoDB
|
|
|
|
// mongoose.connect(process.env.MONGODB_URI || process.env.MONGOLAB_URI);
|
|
|
|
mongoose.connect(serverConfig.mongoURL);
|
|
|
|
mongoose.connection.on('error', () => {
|
|
|
|
console.error('MongoDB Connection Error. Please make sure that MongoDB is running.');
|
|
|
|
process.exit(1);
|
|
|
|
});
|
|
|
|
|
2016-05-17 19:50:37 +00:00
|
|
|
const passportConfig = require('./config/passport');
|
|
|
|
|
2016-05-03 04:09:16 +00:00
|
|
|
app.get("/", function(req, res) {
|
|
|
|
res.sendFile(path.resolve(__dirname + '/../index.html'));
|
|
|
|
})
|
2016-05-24 05:20:59 +00:00
|
|
|
app.get("/login", function(req, res) {
|
|
|
|
res.sendFile(path.resolve(__dirname + '/../index.html'));
|
|
|
|
})
|
2016-05-03 04:09:16 +00:00
|
|
|
|
|
|
|
// start app
|
|
|
|
app.listen(serverConfig.port, (error) => {
|
|
|
|
if (!error) {
|
|
|
|
console.log(`p5js web editor is running on port: ${serverConfig.port}!`); // eslint-disable-line
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default app;
|