Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/seed.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const mongoose = require('mongoose');

const Restaurant = require('../models/restaurants');
const Restaurant = require('../models/restaurant');

mongoose.connect('mongodb://localhost/mapbox-example', {
keepAlive: true,
Expand Down
2 changes: 1 addition & 1 deletion bin/www
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var http = require('http');
* Get port from environment and store in Express.
*/

var port = normalizePort(process.env.PORT || '3000');
var port = normalizePort(process.env.PORT || '3015');
app.set('port', port);

/**
Expand Down