Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 578 Bytes

README.md

File metadata and controls

41 lines (34 loc) · 578 Bytes

Backend Cafe Node

Get Started

yarn install

Run Server

yarn start

Database Table

database table

Api Spec Login

end point http://localhost:8080/api/kasir/login

Request

{
    "username" : string,
    "password" : string
}

Response

{
    "datas" : {
        "id": integer,
        "name": string, 
        "username": string,
        "password": string,
        "role": integer
    },
    "token" : string
}