-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
67 lines (52 loc) · 1.77 KB
/
app.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
67
// server.js
// where your node app starts
// init project
var cors = require('cors');
var express = require('express');
var path = require('path');
var api = require('./routes/api');
var auth = require('./routes/auth');
var router = express.Router();
var app = express();
// we've started you off with Express,
// but feel free to use whatever libs or frameworks you'd like through `package.json`.
app.use(cors({origin:'*'}));
// http://expressjs.com/en/starter/static-files.html
app.use(express.static(path.join(__dirname,'/public')));
app.use('/api',api);
app.use('/auth',auth);
//app.use('/',routes);
app.use(function (err, req, res, next) {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: {}
});
});
// http://expressjs.com/en/starter/basic-routing.html
//app.get("/", function (request, response) {
// response.sendFile(__dirname + '/views/index.html');
//});
//app.get("/dreams", function (request, response) {
// response.send(dreams);
//});
// could also use the POST body instead of query string: http://expressjs.com/en/api.html#req.body
//app.post("/dreams", function (request, response) {
// dreams.push(request.query.dream);
// response.sendStatus(200);
//});
// Simple in-memory store for now
//var dreams = [
// "Find and count some sheep",
// "Climb a really tall mountain",
// "Wash the dishes"
//];
// listen for requests :)
//var listener = app.listen(process.env.PORT, function () {
// console.log('Your app is listening on port ' + listener.address().port);
//});
app.set('port', process.env.PORT || 3000);
var server = app.listen(app.get('port'), function () {
//console.log('Express server listening on port ' + server.address().port);
//debug('Express server listening on port ' + server.address().port);
});