diff --git a/README.md b/README.md index 5b2bab6..b86ccd5 100644 --- a/README.md +++ b/README.md @@ -45,11 +45,11 @@ $ node app ``` 6. Visit [http://localhost:3000](http://localhost:3000) in a web browser. -## Running the demo on Stackato +## Running the demo on HPE Helion Stackato 1. stackato push -n -Make sure you are pushing to a Stackato cluster that has the mongodb service enabled. +Make sure you are pushing to an HPE Helion Stackato cluster that has the mongodb service enabled. ## Credit diff --git a/app.js b/app.js index f400acb..477ca67 100644 --- a/app.js +++ b/app.js @@ -11,7 +11,7 @@ var express = require('express') , morgan = require('morgan'); app.set('views', __dirname + '/views'); -app.set('view engine', 'jade'); +app.set('view engine', 'pug'); app.use(morgan('combined')); app.use(require('stylus').middleware({ src: __dirname + '/public' })); app.use(express.static(__dirname + '/public')); diff --git a/manifest.yml b/manifest.yml index 0162f73..de676c2 100644 --- a/manifest.yml +++ b/manifest.yml @@ -1,6 +1,6 @@ applications: - name: node-backbone-mongo - mem: 128M + memory: 128M services: todos: type: mongodb diff --git a/package.json b/package.json index 4a50100..c190ee8 100644 --- a/package.json +++ b/package.json @@ -8,12 +8,15 @@ }, "dependencies": { "express": "4.10.6", - "jade": "*", + "pug": "2.0.0-alpha6", "mongoose": "*", "stylus": "*", "body-parser": "1.10.0", "method-override": "2.3.0", "errorhandler": "1.3.0", "morgan": "1.5.1" + }, + "engines": { + "node": "0.12.x" } } diff --git a/views/index.jade b/views/index.pug similarity index 100% rename from views/index.jade rename to views/index.pug diff --git a/views/layout.jade b/views/layout.pug similarity index 100% rename from views/layout.jade rename to views/layout.pug