File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -42,14 +42,14 @@ Authentication Flow uses [json web tokens](https://jwt.io) via Passport library
42
42
43
43
## How to use the code
44
44
45
- ** Clone the sources **
45
+ ** Step # 1 ** - Clone the project (private repository)
46
46
47
47
``` bash
48
48
$ git clone https://github.com/app-generator/priv-api-server-nodejs.git
49
49
$ cd priv-api-server-nodejs
50
50
```
51
51
52
- ** Install dependencies ** via NPM or Yarn
52
+ ** Step # 2 ** - Install dependencies via NPM or yarn
53
53
54
54
``` bash
55
55
$ npm i
@@ -63,23 +63,23 @@ $ yarn
63
63
$ yarn typeorm migration:run
64
64
```
65
65
66
- ** Start the API server** - development mode
66
+ ** Step # 3 ** - Start the API server ( development mode)
67
67
68
68
``` bash
69
69
$ npm dev
70
70
// OR
71
71
$ yarn dev
72
72
```
73
73
74
- ** Production Build ** - files generated in ` build ` directory
74
+ ** Step # 4 ** - Production Build ( files generated in ` build ` directory)
75
75
76
76
``` bash
77
77
$ npm build
78
78
// OR
79
79
$ yarn build
80
80
```
81
81
82
- ** Start the API server** - for production (files served from ` build/index.js ` )
82
+ ** Step # 5 ** - Start the API server for production (files served from ` build/index.js ` )
83
83
84
84
``` bash
85
85
$ npm start
You can’t perform that action at this time.
0 commit comments