Educational repository to learn about creating CRUD with nodejs. It using several library :
- expressjs -> web framework
- sequelize -> orm
- cors -> manage cors
- morgan -> logger
- helmet -> security protection
- clone the repo
- open the root application and install the depedencies
yarn install
- make sure you already installed docker on your machine
- start database mysql using docker
docker-compose -f db.docker-compose.yml up
- start your application
yarn dev