Skip to content

Commit 1ffda60

Browse files
author
App Generator
committed
Update README
1 parent 4ed09cc commit 1ffda60

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Authentication Flow uses `json web tokens` via Passport library - `passport-jwt`
4747

4848
## ✨ How to use the code
4949

50-
> **Step #1** - Clone the project
50+
> **Step 1** - Clone the project
5151
5252
```bash
5353
$ git clone https://github.com/app-generator/api-server-nodejs.git
@@ -56,7 +56,7 @@ $ cd api-server-nodejs
5656

5757
<br />
5858

59-
> **Step #2** - Install dependencies via NPM or Yarn
59+
> **Step 2** - Install dependencies via NPM or Yarn
6060
6161
```bash
6262
$ npm i
@@ -66,38 +66,38 @@ $ yarn
6666

6767
<br />
6868

69-
> **Step #3** - Run the SQLite migration via TypeORM
69+
> **Step 3** - Run the SQLite migration via TypeORM
7070
7171
```
7272
$ yarn typeorm migration:run
7373
```
7474

7575
<br />
7676

77-
> **Step #4** - Start the API server (development mode)
77+
> **Step 4** - Start the API server (development mode)
7878
7979
```bash
80-
$ npm dev
80+
$ npm run dev
8181
// OR
8282
$ yarn dev
8383
```
8484

8585
<br />
8686

87-
> **Step #5** - Production Build (files generated in `build` directory)
87+
> **Step 5** - Production Build (files generated in `build` directory)
8888
8989
```bash
90-
$ npm build
90+
$ npm run build
9191
// OR
9292
$ yarn build
9393
```
9494

9595
<br />
9696

97-
> **Step #6** - Start the API server for production (files served from `build/index.js`)
97+
> **Step 6** - Start the API server for production (files served from `build/index.js`)
9898
9999
```bash
100-
$ npm start
100+
$ npm run start
101101
// OR
102102
$ yarn start
103103
```

0 commit comments

Comments
 (0)