We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08ed491 commit 1336711Copy full SHA for 1336711
README.md
@@ -72,8 +72,11 @@ Then navigate to the created directory and run the following command to generate
72
```sh
73
$ yo create-service
74
75
-# or with mongo
+# or :with-mongo
76
$ yo create-service:with-mongo
77
+
78
+# or :with-postgres
79
+$ yo create-service:with-postgres
80
```
81
82
This scaffolds out:
@@ -85,9 +88,11 @@ This scaffolds out:
85
88
│ │ └── types.ts
86
89
│ ├── config
87
90
│ │ ├── index.ts
-│ │ └── mongo.ts (:with-mongo)
-│ ├── db (:with-mongo)
-│ │ └── mongo.ts
91
+│ │ ├── mongo.ts (:with-mongo)
92
+│ │ └── postgres.ts (:with-postgres)
93
+│ ├── db
94
95
96
│ ├── app.ts
97
│ ├── index.ts
98
├── .dockerignore
0 commit comments