A simple url shortener service.
$ npm install# Running postgresql and redis
$ docker-compose up -d# Create Migrations
$ npx sequelize-cli migration:generate --name [name_of_your_migration]# Run Migrations Up
$ npx sequelize-cli db:migrate# Run Migrations Down
$ npx sequelize-cli db:migrate:undo# development
$ npm run start# unit tests
$ npm run test# open in browser
$ localhost:3000/api-docs