Skip to content

Commit 6a81f8e

Browse files
committed
removed some temp settings for heroku
1 parent 1060032 commit 6a81f8e

File tree

2 files changed

+16
-18
lines changed

2 files changed

+16
-18
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
Basic Angular seed application created with Quick start application (Tour of Heroes) given on angular website. It uses ExpressJS along with Mongo DB support (Mongoose) via a wrapper of Repository Pattern as Business layer.
1313
It also uses Gulp for running task and TsLint.The seed application is built over node and uses latest node packages.
1414

15+
## [https://angular2-express-mongoose.herokuapp.com/](https://angular2-express-mongoose.herokuapp.com/)
16+
1517
## Prerequisites
1618

1719
1. Latest version of Node to be installed.
@@ -20,7 +22,8 @@ It also uses Gulp for running task and TsLint.The seed application is built over
2022
## Steps to Run
2123
```sh
2224
npm install <= install all the npm Dependencies
23-
npm run deploy <= start the Nodemon and watch for changes.
25+
npm run build <= build and compile the dest folder
26+
npm run deploy <= start the Nodemon and watch for changes.
2427
```
2528

2629
## Global packages

package.json

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@
55
"scripts": {
66
"clean": "gulp clean",
77
"compile": "gulp compile",
8-
"build": "./node_modules/.bin/gulp build",
8+
"build": "gulp build",
99
"deploy": "concurrent --kill-others \"gulp watch\" \"gulp start\"",
10-
"postinstall": "npm run installTypings && npm run build",
11-
"test": "echo \"Error: no test specified\" && exit 1",
12-
"installTypings": "./node_modules/.bin/gulp installTypings"
10+
"postinstall": "gulp installTypings"
1311
},
1412
"repository": {
1513
"type": "git",
@@ -45,29 +43,26 @@
4543
"body-parser": "^1.15.1",
4644
"express": "^4.13.4",
4745
"mongoose": "^4.5.0",
48-
"bootstrap": "^3.3.6",
46+
"bootstrap": "^3.3.6"
47+
},
48+
"devDependencies": {
49+
"@types/core-js": "^0.9.32",
50+
"concurrently": "^2.1.0",
51+
"method-override": "^2.3.6",
4952
"gulp": "^3.9.1",
5053
"gulp-concat": "^2.6.0",
5154
"gulp-nodemon": "^2.1.0",
5255
"gulp-sourcemaps": "^1.6.0",
5356
"gulp-tslint": "^4.3.3",
5457
"gulp-typescript": "^2.13.6",
5558
"gulp-typings": "^2.0.0",
56-
"del": "^2.2.0",
57-
"tslint": "^3.5.0",
58-
"ts-node": "1.3.0",
59-
"run-sequence": "^1.2.1"
60-
},
61-
"devDependencies": {
62-
"@types/core-js": "^0.9.32",
63-
"concurrently": "^2.1.0",
64-
"method-override": "^2.3.6",
65-
"run-sequence": "^1.2.1",
59+
"del": "^2.2.0",
6660
"tslint": "^3.5.0",
67-
"ts-node": "1.3.0"
61+
"ts-node": "1.3.0",
62+
"run-sequence": "^1.2.1"
6863
},
6964
"bugs": {
7065
"url": "https://github.com/moizKachwala/Angular2-expressjs-mongoose-gulp-node-typescript/issues"
7166
},
7267
"homepage": "https://github.com/moizKachwala/Angular2-expressjs-mongoose-gulp-node-typescript#readme"
73-
}
68+
}

0 commit comments

Comments
 (0)