ktor-init-tools
ktor-init-tools copied to clipboard
ktor project generator web page and IDEA plugin
I get an error when generating a client from openapi: ``` Couldn't generate ZIP. Reason: IllegalStateException: Unsupported 'Float' ``` [jellyfin-openapi.json](https://github.com/ktorio/ktor-init-tools/files/4990356/jellyfin-openapi.json.txt)
Use Ktor Project Generator (1.3.2) with all the defaults, but select `Mock HttpClient Engine`. The generated test file contains `import kotlinx.coroutines.io.*`. However, the `io` namespace cannot be resolved, so the...
Use Ktor Project Generator (1.3.2) with all the defaults, but select `ContentNegotiation`. The generated file is missing `import io.ktor.features.ContentNegotiation`, so the code does not compile.
The ktor plugin generates the follow code as a raw sockets sample. It doesn't seem to work. The blocking operation happens without Dispatchers.IO context. The launch block is never started...
The following problem happens when I want to load this swagger file in start.ktor.io (Version 1.2.2): [swagger (1).json.zip](https://github.com/ktorio/ktor-init-tools/files/3534414/swagger.1.json.zip) ``` RangeError: Maximum call stack size exceeded at isInheritanceFromInterface (kotlin.js:1110) at isInheritanceFromInterface...
There are several compile errors in ApplicationTest when one chooses MockHttpEngine as feature. I am not sure, it seems to me the generated code is completely outdated.
Hi there, Is there a way we can generate the common directory layout? (eg: ```src/main/kotlin```, ```src/main/resources```, ```src/test/kotlin```, ```src/test/resources```) Maybe using checkbox? ```[x] Use standard/maven directory layout``` Thanks!!
As erroneously opened in [ktorio/ktor:867](https://github.com/ktorio/ktor/issues/867) ### Ktor Version 1.1.1 ### Ktor Engine Used(client or server and name) io.ktor.server.netty.EngineMain ### JVM Version, Operating System and Relevant Context ``` openjdk version "1.8.0_192"...