Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Small Update
Browse files Browse the repository at this point in the history
  • Loading branch information
amoshaviv committed Oct 7, 2014
1 parent d5d2f2e commit ea04c9e
Show file tree
Hide file tree
Showing 4 changed files with 621 additions and 515 deletions.
2 changes: 1 addition & 1 deletion config/env/production.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

module.exports = {
db: process.env.MONGOHQ_URL || process.env.MONGOLAB_URI || 'mongodb://localhost/mean',
db: process.env.MONGOHQ_URL || process.env.MONGOLAB_URI || 'mongodb://' + (process.env.DB_1_PORT_27017_TCP_ADDR || 'localhost') + '/mean',
assets: {
lib: {
css: [
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
"postinstall": "bower install --config.interactive=false"
},
"dependencies": {
"express": "~4.7.2",
"express-session": "~1.7.2",
"body-parser": "~1.5.2",
"express": "~4.9.5",
"express-session": "~1.8.2",
"body-parser": "~1.9.0",
"cookie-parser": "~1.3.2",
"compression": "~1.0.9",
"method-override": "~2.1.2",
"morgan": "~1.2.2",
"compression": "~1.1.0",
"method-override": "~2.2.0",
"morgan": "~1.3.2",
"connect-mongo": "~0.4.1",
"connect-flash": "~0.1.1",
"helmet": "~0.4.0",
Expand All @@ -44,23 +44,23 @@
"grunt-cli": "~0.1.13",
"glob": "~4.0.5",
"async": "~0.9.0",
"nodemailer": "~1.1.1"
"nodemailer": "~1.3.0"
},
"devDependencies": {
"supertest": "~0.13.0",
"supertest": "~0.14.0",
"should": "~4.0.4",
"grunt-env": "~0.4.1",
"grunt-node-inspector": "~0.1.3",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-csslint": "^0.2.0",
"grunt-ng-annotate": "~0.3.2",
"grunt-contrib-uglify": "~0.5.1",
"grunt-contrib-csslint": "^0.3.1",
"grunt-ng-annotate": "~0.4.0",
"grunt-contrib-uglify": "~0.6.0",
"grunt-contrib-cssmin": "~0.10.0",
"grunt-nodemon": "~0.3.0",
"grunt-concurrent": "~0.5.0",
"grunt-mocha-test": "~0.11.0",
"grunt-karma": "~0.8.2",
"grunt-concurrent": "~1.0.0",
"grunt-mocha-test": "~0.12.1",
"grunt-karma": "~0.9.0",
"load-grunt-tasks": "~0.6.0",
"karma": "~0.12.0",
"karma-jasmine": "~0.2.1",
Expand Down
Loading

0 comments on commit ea04c9e

Please sign in to comment.