Skip to content

Commit d579732

Browse files
author
Robert Yokota
committed
Minor README change
1 parent 35f44da commit d579732

File tree

4 files changed

+3
-488
lines changed

4 files changed

+3
-488
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
A [Yeoman](http://yeoman.io) generator for [AngularJS](http://angularjs.org) and [Express](http://expressjs.com) with [Sequelize](http://sequelizejs.com).
44

5+
Express is a Javascript-based micro-framework. For AngularJS integration with other micro-frameworks, see https://github.com/rayokota/MicroFrameworkRosettaStone.
6+
57
## Installation
68

79
Install [Git](http://git-scm.com) and [node.js](http://nodejs.org). The development mode also requires [SQLite](http://www.sqlite.org).

app/index.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ var AngularExpressSequelizeGenerator = module.exports = function AngularExpressS
1212

1313
this.on('end', function () {
1414
this.installDependencies({ skipInstall: options['skip-install'] });
15-
if (!options['skip-install']) {
16-
return this.spawnCommand('bundle', ['install']);
17-
}
1815
});
1916

2017
this.pkg = JSON.parse(this.readFileAsString(path.join(__dirname, '../package.json')));
@@ -48,7 +45,6 @@ AngularExpressSequelizeGenerator.prototype.askFor = function askFor() {
4845

4946
AngularExpressSequelizeGenerator.prototype.app = function app() {
5047

51-
this.copy('gitignore', '.gitignore');
5248
this.entities = [];
5349
this.resources = [];
5450
this.generatorConfig = {

0 commit comments

Comments
 (0)