raphaklaus / oaks-lab

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OAK'S LAB

Running the application

As usual:

$ npm install
$ npm start # will start the server
$ npm test
$ npm run lint # some lint for the peace of mind

I've created a Insomnia collection with all the endpoints ready to be consumed. Check insomnia.json file!

Database Relationship Model

erDiagram
    PHASE ||--|{ TASK : has_many
    PHASE {
        string id
        string name
        boolean done
    }
    TASK {
        string id
        string name
        boolean done
    }
Loading

About


Languages

Language:TypeScript 100.0%