CleanArchitecture icon indicating copy to clipboard operation
CleanArchitecture copied to clipboard

Kotlin backend based on the Clean Architecture principles. Ktor, JWT, Exposed, Flyway, OpenAPI/REST & KGraphQL/GraphQL generated endpoints, Gradle.

Results 4 CleanArchitecture issues
Sort by recently updated
recently updated
newest added

With [KGraphQL](https://github.com/apurebase/kgraphql/) development being stale since august 2021 and the [developer going AWOL](https://github.com/aPureBase/KGraphQL/issues/175), other graphql server libraries should be considered. Update JUNE 2022: KGraphQL author seems to have returned, [looking...

Like GraphQL, Rest APIs with OpenAPI generated docs, can enable [client-side code generation](https://github.com/OpenAPITools/openapi-generator) [Third-party alternative](https://github.com/drwpow/openapi-typescript) Since we're only utilizing GraphQL as a typed API, using GraphQL is overkill and requires...

I just change application.conf file ktor { deployment { port = 9090 } application { modules = [ ktor.ServerKt.module ] } development = true } database { type = "JDBC"...