Skip to content

Latest commit

 

History

23 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

Repository files navigation

Vert.x web DEMO

Vert.x native api server

build: mvn package

run: ./target/webtools

options:
    --http_port=8999
    --log_path=/data/logs
    --conf_file=/data/config.json

conf_file:

{
  "vertxConfig": {
    "http_port": "8888",
    "log_path": "/data/logs",
    "jwt_private_key": "",
    "jwt_public_key": ""
  }
}

database

SQLite

sql:

-- user
create table user
(
    id       integer not null
        constraint user_pk primary key autoincrement,
    username text,
    password text,
    salt     text
);

create unique index user_username_uindex on user (username);

About

Vert.x Native web application

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages