-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
24 lines (19 loc) · 1023 Bytes
/
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
// set up
var express = require('express');
var app = express(); // create our app w/ express
var mongoose = require('mongoose'); // mongoose for mongodb
var port = process.env.PORT || 8080; // set the port
var database = require('./config/database'); // load the database config
// configuration
mongoose.connect(database.url); // connect to mongoDB database on localhost port 27017 database name test
app.configure(function() {
app.use(express.static(__dirname + '/public')); // set the static files location /public/img will be /img for users
app.use(express.logger('dev')); // log every request to the console
app.use(express.bodyParser()); // pull information from html in POST
app.use(express.methodOverride()); // simulate DELETE and PUT
});
// routes
require('./app/routes.js')(app);
// listen (start app with node app.js) ======================================
app.listen(port);
console.log(" Test Assignment App for Notes listening on port " + port);