-
Notifications
You must be signed in to change notification settings - Fork 74
/
app.js
35 lines (29 loc) · 1.28 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
var express = require("express");
var ejs = require("ejs");
var app = express();
///////////////////////////////////////////////////////////////////////////////
// APP CONFIGURATION //
///////////////////////////////////////////////////////////////////////////////
//configure logging
app.use(express.logger());
//make files in static folder publicly accessible
app.use('/static', express.static(__dirname + '/static'));
//use ejs for html templates
app.engine('html', ejs.renderFile);
///////////////////////////////////////////////////////////////////////////////
// APP ROUTES //
///////////////////////////////////////////////////////////////////////////////
//default route
app.get('/', function(req, res) {
res.render('index.html', { });
});
app.get('/test', function(req, res) {
res.render('test.html', { });
});
///////////////////////////////////////////////////////////////////////////////
// RUN CONFIGURATION //
///////////////////////////////////////////////////////////////////////////////
var port = Number(process.env.PORT || 5000);
app.listen(port, function() {
console.log("Listening on " + port);
});