Skip to content

Commit ff9f900

Browse files
update README
1 parent ec44c2f commit ff9f900

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
# Installation
22

3-
```
4-
git clone https://github.com/bersling/typescript-mongo-express-node-seed.git project-name-backend
5-
cd project-name-backend
6-
npm install
3+
```bash
4+
$ git clone https://github.com/CodebitsDesign/typescript-mean-backend.git <project-name>
5+
$ cd <project-name>
6+
$ yarn install
77
```
88

99
# Run
1010
Make sure you have typescript installed, then run:
11-
```
12-
npm start
11+
12+
```bash
13+
yarn start
1314
```
1415

1516
# Test
1617
```
17-
npm test
18+
yarn test
1819
```
1920

20-
2121
# Database
22-
When you first run this project, it will connect to a remote Mongo instance I have setup so this project can be run with minimal overhead. However, I advise you to create your own `<project>/properties/local.properties.json` and `<project>/properties/test.properties.json`, since the remote mongo instance is cleaned on a regular basis.
22+
When you first run this project, it will connect to a remote MongoDB instance I have setup so this project can be run with minimal overhead. However, I advise you to create your own `<project>/properties/local.properties.json` and `<project>/properties/test.properties.json`, since the remote mongo instance is cleaned on a regular basis.

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
2-
"name": "ts-mongo-express-node-seed",
2+
"name": "typescript-mean-backend",
33
"version": "0.0.0",
4-
"description": "",
4+
"description": "Typescript MEAN Backend, MongoDB-Express-Node App for `typescript-mean-seed` git-submodule.",
55
"main": "index.js",
66
"scripts": {
77
"test": "mocha --reporter spec --compilers ts:ts-node/register '**/*.test.ts'",
88
"start": "tsc && node dist/index.js",
99
"spec": "mocha --reporter spec --compilers ts:ts-node/register --grep ${TEST} '**/*.test.ts'"
1010
},
11-
"author": "Daniel Niederberger <bersling@gmail.com>",
11+
"author": "Seokjin Seo <codebits.design@gmail.com>",
1212
"license": "MIT",
1313
"dependencies": {
1414
"@types/bcrypt": "^1.0.0",
1515
"@types/winston": "^2.3.0",
1616
"bcrypt": "^1.0.2",
17-
"body-parser": "^1.15.2",
18-
"express": "^4.14.0",
19-
"mongodb": "^2.2.25",
20-
"ts-mean-models": "0.0.x",
17+
"body-parser": "^1.17.1",
18+
"express": "^4.15.2",
19+
"mongodb": "^2.2.26",
20+
"typescript-mean-models": "^0.0.1",
2121
"winston": "^2.3.1",
2222
"winston-color": "^1.0.0"
2323
},
@@ -32,7 +32,7 @@
3232
"chai": "^3.5.0",
3333
"chai-http": "^3.0.0",
3434
"mocha": "^3.1.2",
35-
"ts-node": "^1.6.1",
36-
"typescript": "^2.0.6"
35+
"ts-node": "^3.0.2",
36+
"typescript": "^2.3.0"
3737
}
3838
}

0 commit comments

Comments
 (0)