├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Dockerfile ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src ├── main └── kotlin │ └── com │ └── codely │ ├── api │ └── infrastructure │ │ └── HealthcheckController.kt │ └── shared │ └── Application.kt └── test-integration └── kotlin └── com └── codely └── integration └── healthcheck └── HealthcheckAcceptanceTest.kt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/kotlin-api-skeleton/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/kotlin-api-skeleton/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/kotlin-api-skeleton/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/kotlin-api-skeleton/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/kotlin-api-skeleton/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/kotlin-api-skeleton/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/kotlin-api-skeleton/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/kotlin-api-skeleton/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/kotlin-api-skeleton/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "kotlin-api-skeleton" 2 | -------------------------------------------------------------------------------- /src/main/kotlin/com/codely/api/infrastructure/HealthcheckController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/kotlin-api-skeleton/HEAD/src/main/kotlin/com/codely/api/infrastructure/HealthcheckController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/codely/shared/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/kotlin-api-skeleton/HEAD/src/main/kotlin/com/codely/shared/Application.kt -------------------------------------------------------------------------------- /src/test-integration/kotlin/com/codely/integration/healthcheck/HealthcheckAcceptanceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/kotlin-api-skeleton/HEAD/src/test-integration/kotlin/com/codely/integration/healthcheck/HealthcheckAcceptanceTest.kt --------------------------------------------------------------------------------