-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from rjaros/main
Upgrade to KVision 3.17.2
- Loading branch information
Showing
64 changed files
with
1,634 additions
and
476 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
# kvision-project-wizard | ||
KVision plugin for project creation. | ||
# KVision Project Wizard | ||
KVision IntellJ IDEA plugin for new project creation. | ||
Supported project types: | ||
* Fullstack KTOR | ||
* Fullstack Spring-Boot | ||
* Frontend-only | ||
* Frontend project | ||
* Ktor fullstack project | ||
* Spring Boot fullstack project | ||
* Javalin fullstack project | ||
* Jooby fullstack project | ||
* Micronaut fullstack project | ||
* Vert.x fullstack project | ||
|
||
## Contribution | ||
If you want to contribute, You can add support for other backend frameworks like javalin, jooby, vertx and others. To do so You must: | ||
* inherit by `TreeGenerator` | ||
* add case to KVisionModuleBuilder.createGenerator() | ||
* add enum to KVisionModuleBuilder.supportedBackendLibraries | ||
You can contribute new project types: | ||
* create new `TreeGenerator` subclass | ||
* add new case to `KVisionModuleBuilder.createGenerator()` | ||
* add new value to `KVisionModuleBuilder.supportedProjectTypes` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/main/kotlin/tech/stonks/kvizard/generator/JavalinTreeGenerator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package tech.stonks.kvizard.generator | ||
|
||
class JavalinTreeGenerator : TreeGenerator( | ||
"javalin", | ||
false, | ||
backendFiles = arrayOf("Main.kt", "Service.kt"), | ||
backendResourcesFiles = arrayOf("application.conf", "logback.xml"), | ||
backendResourcesAssetsFiles = arrayOf(".placeholder") | ||
) |
8 changes: 8 additions & 0 deletions
8
src/main/kotlin/tech/stonks/kvizard/generator/JoobyTreeGenerator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package tech.stonks.kvizard.generator | ||
|
||
class JoobyTreeGenerator : TreeGenerator( | ||
"jooby", | ||
false, | ||
backendFiles = arrayOf("Main.kt", "Service.kt"), | ||
backendResourcesFiles = arrayOf("application.conf", "logback.xml") | ||
) |
8 changes: 8 additions & 0 deletions
8
src/main/kotlin/tech/stonks/kvizard/generator/MicronautTreeGenerator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package tech.stonks.kvizard.generator | ||
|
||
class MicronautTreeGenerator : TreeGenerator( | ||
"micronaut", | ||
false, | ||
backendFiles = arrayOf("Main.kt", "Service.kt"), | ||
backendResourcesFiles = arrayOf("application.yml", "logback.xml") | ||
) |
Oops, something went wrong.