-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver_old.js
66 lines (52 loc) · 1.67 KB
/
server_old.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
'use strict';
// Module dependencies.
var express = require('express'),
path = require('path'),
fs = require('fs');
var app = express();
// Connect to database
var db = require('./lib/db/mongo');
// Bootstrap models
var modelsPath = path.join(__dirname, 'lib/models');
fs.readdirSync(modelsPath).forEach(function (file) {
require(modelsPath + '/' + file);
});
// Populate empty DB with dummy data
require('./lib/db/dummydata');
// Controllers
var api = require('./lib/controllers/api');
// Express Configuration
app.configure(function(){
app.use(express.logger('dev'));
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
});
app.configure('development', function(){
app.use(express.static(path.join(__dirname, '.tmp')));
app.use(express.static(path.join(__dirname, 'app')));
app.use('/app', express.static(path.join(__dirname, 'app')));
app.use(express.errorHandler());
});
app.configure('production', function(){
app.use(express.favicon(path.join(__dirname, 'public/favicon.ico')));
app.use(express.static(path.join(__dirname, 'public')));
});
// Routes
app.get('/api/exams', api.getExams);
app.post('/api/exams/add', api.addExam);
app.post('/api/exams/update', api.updateExam);
app.get('/api/exams/del/:title', api.delExam);
// // Rewrite all non-API requests to Angular
// app.get('*', function(req, res, next) {
// res.sendfile(__dirname + '/app/index.html');
// });
// 404
app.use(function(req, res, next){
res.send(404, 'Sorry cant find that!');
});
// Start server
var port = process.env.PORT || 3000;
app.listen(port, function () {
console.log('Express server listening on port %d in %s mode', port, app.get('env'));
});