Skip to content

Commit 1336711

Browse files
committed
docs(README.md): add :with-postgres to Install & Usage instruction
1 parent 08ed491 commit 1336711

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,11 @@ Then navigate to the created directory and run the following command to generate
7272
```sh
7373
$ yo create-service
7474

75-
# or with mongo
75+
# or :with-mongo
7676
$ yo create-service:with-mongo
77+
78+
# or :with-postgres
79+
$ yo create-service:with-postgres
7780
```
7881

7982
This scaffolds out:
@@ -85,9 +88,11 @@ This scaffolds out:
8588
│ │   └── types.ts
8689
│ ├── config
8790
│ │ ├── index.ts
88-
│ │   └── mongo.ts (:with-mongo)
89-
│ ├── db (:with-mongo)
90-
│ │   └── mongo.ts
91+
│ │   ├── mongo.ts (:with-mongo)
92+
│ │   └── postgres.ts (:with-postgres)
93+
│ ├── db
94+
│ │   ├── mongo.ts (:with-mongo)
95+
│ │   └── postgres.ts (:with-postgres)
9196
│ ├── app.ts
9297
│ ├── index.ts
9398
├── .dockerignore

0 commit comments

Comments
 (0)