/kotlin-vertx-example

kotlin vertxweb Coroutine examples

Primary LanguageKotlin

kotlin-vertx-example

kotlin vertx-web Coroutine examples

Static Badge


Init the database

CREATE TABLE blog.posts (
    id int  AUTO_INCREMENT PRIMARY KEY ,
    title VARCHAR(255),
    content text,
    created_at TIMESTAMP 
);

To run your application:

./gradlew clean run