nestforge-generator 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -3
- package/README.pt-BR.md +11 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,9 +4,17 @@
|
|
|
4
4
|
|
|
5
5
|
Interactive CLI that generates NestJS projects from NestForge's [Prisma](../../templates/prisma), [TypeORM](../../templates/typeorm), and [Drizzle](../../templates/drizzle) templates.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
```
|
|
7
|
+
Install the package locally:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install nestforge-generator
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Run the locally installed CLI:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx nestforge
|
|
17
|
+
```
|
|
10
18
|
|
|
11
19
|
For the testing guide, CLI prompts, and complete checklist, see [`TESTING.md`](TESTING.md).
|
|
12
20
|
|
package/README.pt-BR.md
CHANGED
|
@@ -4,9 +4,17 @@
|
|
|
4
4
|
|
|
5
5
|
CLI interativa que gera projetos NestJS a partir dos templates `../../templates/prisma`, `../../templates/typeorm` e `../../templates/drizzle` do NestForge.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
```
|
|
7
|
+
Instale o pacote localmente:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install nestforge-generator
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Execute a CLI instalada localmente:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx nestforge
|
|
17
|
+
```
|
|
10
18
|
|
|
11
19
|
Para o guia de testes, perguntas da CLI e checklist completo, consulte [`TESTING.pt-BR.md`](TESTING.pt-BR.md).
|
|
12
20
|
|