├── .gitignore ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── resources ├── application.conf └── logback.xml ├── settings.gradle └── src └── Application.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/KtorNoteServer/HEAD/.gitignore -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/KtorNoteServer/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/KtorNoteServer/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/KtorNoteServer/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/KtorNoteServer/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/KtorNoteServer/HEAD/gradlew.bat -------------------------------------------------------------------------------- /resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/KtorNoteServer/HEAD/resources/application.conf -------------------------------------------------------------------------------- /resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/KtorNoteServer/HEAD/resources/logback.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "ktor-note-app" 2 | -------------------------------------------------------------------------------- /src/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/KtorNoteServer/HEAD/src/Application.kt --------------------------------------------------------------------------------