Skip to content

Commit f59c94d

Browse files
authored
Merge pull request #357 from mperezor19/d4n-cli-remove
The documentation is updated and easy to follow, so merging.
2 parents dc365bf + cda7b6c commit f59c94d

32 files changed

+154
-2006
lines changed

.vscode/settings.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
12
{
2-
"typescript.preferences.importModuleSpecifier": "relative",
3-
"typescript.preferences.quoteStyle": "single",
4-
"editor.formatOnSave": true
5-
}
3+
"java.home": "C:/devonfw-ide-scripts-2020.08.001/software/java",
4+
"typescript.preferences.importModuleSpecifier": "relative",
5+
"typescript.preferences.quoteStyle": "single",
6+
"editor.formatOnSave": true
7+
}

documentation/Home.asciidoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ toc::[]
2929
== Guides
3030

3131
- link:guides-key-principles.asciidoc[Key Principles]
32-
- link:guides-cli.asciidoc[devon4node CLI]
3332
- link:guides-code-generation.asciidoc[Code Generation]
3433
- link:guides-coding-conventions.asciidoc[Coding Conventions]
3534
- link:guides-dependency-injection.asciidoc[Dependency Injection]

documentation/devon4node-architecture.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ devon4node defines a folder structure that every devon4node application must fol
117117
118118
----
119119

120-
link:guides-cli[devon4node CLI] ensures this folder structure so, please, do not create files by your own, use the link:guides-cli[devon4node CLI].
120+
link:guides-code-generation[devon4node schematics] ensures this folder structure so, please, do not create files by your own, use the link:guides-code-generation[devon4node schematics].
121121

122122
=== NestJS components
123123

documentation/guides-auth-jwt.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ toc::[]
1919

2020
devon4node provides a way to generate a default authentication module using JWT (JSON Web Token). It uses the `@nestjs/passport` library descrbe link:https://docs.nestjs.com/techniques/authentication[here].
2121

22-
To generate the devon4node auth-jwt module you only need to execute the command: `devon4node generate auth-jwt`. We generate this module inside the applications instead of distributing a npm package because this module is prone to be modified depending on the requirements. It alse generate a basic user module.
22+
To generate the devon4node auth-jwt module you only need to execute the command: `nest generate -c @devon4node/schematics auth-jwt`. We generate this module inside the applications instead of distributing a npm package because this module is prone to be modified depending on the requirements. It alse generate a basic user module.
2323

2424
In this page we will explain the default implementation provided by devon4node. For more information about authentication, JWT, passport and other you can see:
2525

0 commit comments

Comments
 (0)