This assumes you already have a Yeoman app and are ready for publishing
Create production directory & assets
$ grunt build
Create a new package.json
in the ‘dist’ directory:
$ cd app && npm init
Install Express & Gzippo for server:
$ npm install express gzippo --save
Create a index.js
file and add the following to the file:
var express = require('express');
var http = require('http');
var gzippo = require('gzippo');
var app = express();
app.use(gzippo.staticGzip('' + __dirname));
app.use('/*', function(req, res){
res.sendfile(__dirname + '/index.html');
});
var server = http.createServer(app);
server.listen(process.env.PORT || 5000);
Create a Procfile
file and add the following to the file:
web: node index.js
Create a .gitignore
file and add the following to the file:
# Ignore pattern for Production
node_modules
Commit our new production repo:
$ git init
$ git add -A
$ git commit -m ‘Initial Commit’
Create a Heroku app
$ heroku create <app_name>
Install grunt-build-control in our main app directory:
$ cd ../ && npm install grunt-build-control --save-dev
Configure grunt-build-control inside of our Gruntfile.js
file.
buildcontrol: {
options: {
dir: 'dist',
commit: true,
push: true,
message: 'Built %sourceName% from commit %sourceCommit% on branch %sourceBranch%'
},
heroku: {
options: {
remote: '[email protected]:heroku-app-1985.git',
branch: 'master'
}
}
}
Optionally, create a shortcut for the task:
grunt.registerTask('deploy', ['buildcontrol']);
Reconfigure clean task to ignore the new files created in production directory:
// Empties folders to start fresh
clean: {
dist: {
files: [{
dot: true,
src: [
'.tmp',
'<%= yeoman.dist %>/*',
'!<%= yeoman.dist %>/.git{,*/}*',
'!<%= yeoman.dist %>/Procfile',
'!<%= yeoman.dist %>/package.json',
'!<%= yeoman.dist %>/web.js',
'!<%= yeoman.dist %>/node_modules'
]
}]
},
server: '.tmp'
}
Commit changes to your Gruntfile.js and package.json
git commit -m 'Updated Gruntfile.js and package.json'
Launch
$ grunt deploy
Depending on your app, you may need to scale up a web worker on Heroku for it to run:
$ heroku ps:scale web=1
Now open your app and revel in all its glory:
$ cd dist && heroku open
My yeoman app is running fine on the local server but when i deployed it to the heroku it gives the following error:
Uncaught Error: [$injector:modulerr] Failed to instantiate module mmaApp due to:
Error: [$injector:nomod] Module 'mmaApp' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
http://errors.angularjs.org/1.3.8/$injector/nomod?p0=mmaApp
at https://mma12.herokuapp.com/scripts/vendor.c4502f47.js:3:20441
at https://mma12.herokuapp.com/scripts/vendor.c4502f47.js:3:28706
at b (https://mma12.herokuapp.com/scripts/vendor.c4502f47.js:3:28278)
at https://mma12.herokuapp.com/scripts/vendor.c4502f47.js:3:28590
at https://mma12.herokuapp.com/scripts/vendor.c4502f47.js:4:5087
at f (https://mma12.herokuapp.com/scripts/vendor.c4502f47.js:3:20826)
at n (https://mma12.herokuapp.com/scripts/vendor.c4502f47.js:4:4865)
at Sb (https://mma12.herokuapp.com/scripts/vendor.c4502f47.js:4:6527)
at h (https://mma12.herokuapp.com/scripts/vendor.c4502f47.js:3:26458)
at _ (https://mma12.herokuapp.com/scripts/vendor.c4502f47.js:3:26768)
http://errors.angularjs.org/1.3.8/$injector/modulerr?p0=mmaApp&p1=Error%3A%…tps%3A%2F%2Fmma12.herokuapp.com%2Fscripts%2Fvendor.c4502f47.js%3A3%3A26768)
please help me to find out where is the error.... ??