-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
28 lines (20 loc) · 1.05 KB
/
Copy pathserver.js
File metadata and controls
28 lines (20 loc) · 1.05 KB
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
// set up ======================================================================
var express = require('express');
var app = express(); // create our app w/ express
var mongoose = require('mongoose'); // mongoose for mongodb
var bodyParser = require('body-parser');
var port = process.env.PORT || 3000;
var database = require('./config/database');
// configuration ===============================================================
mongoose.connect(database.url); // connect to mongoDB database on modulus.io
app.use(bodyParser());
app.use(express.static(__dirname + '/public')); // set the static files location /public/img will be /img for users
// pull information from html in POST
//app.configure(function() {
// app.use(express.logger('dev')); // log every request to the console
// app.use(express.methodOverride()); // simulate DELETE and PUT
//});
require('./app/routes.js')(app);
// listen (start app with node server.js) ======================================
app.listen(port);
console.log("App listening on port " + port);