Skip to content

Commit 63103ad

Browse files
committed
refactor(removed cli d4n): d4n CLI is removed. Nest CLI is used now with d4n schematics.Docs updated
In order to not mantain d4n CLI new features that Nest CLI can do(or in future updates), we are using the features that d4n schematics offer with Nest CLI. BREAKING CHANGE: d4n CLI does not exist from now on. P002116-1308
1 parent 99ea226 commit 63103ad

31 files changed

Lines changed: 156 additions & 2006 deletions

.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)