In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Launches the API/websocket server on http://localhost:3001
List schema:
id: string;
title: string;
GET /api/lists
- returns an array of List
objects
GET /api/lists/:id
- returns a single List
object
PUT /api/lists/:id
- updates and returns a single List
object
POST /api/lists/:id
- creates and returns a single List
object
DELETE /api/lists/:id
- removes a single List
object
Card schema:
id: string;
title: string;
list_id: string;
user?: string; // owner of the card
GET /api/cards
- returns an array of Card
objects
GET /api/cards/:id
- returns a single Card
object
PUT /api/cards/:id
- updates and returns a single Card
object
POST /api/cards/:id
- creates and returns a single Card
object. If the request has x-access-token
header set, the user will be assigned as the owner of the card
DELETE /api/cards/:id
- removes a single Card
object
User schema:
id: string;
name: string;
username: string;
password: string;
GET /api/users
- returns an array of User
objects
PUT /api/users
- updates and returns the current User
object, based on the x-access-token
POST /api/users
- creates and returns a single User
object
DELETE /api/users
- removes a single User
object, based on the x-access-token
POST /api/token
- send { username: string, password: string }
to authenticate as a user
GET /api/me
- get currently logged user based on the x-access-token
Websockets URL: ws://localhost:3001
. The websocket will emit following actions:
CARD_UPDATE
CARD_CREATE
CARD_REMOVE
LIST_UPDATE
LIST_REMOVE
LIST_CREATE