Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 378 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 378 Bytes

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