testershaven / bookmark-checker

auth0 bookmark checker

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

scalability-lab05: Bookmarks System

Build Status

This branch contains a possible solution for Bookmarks challenge. It is implemented with Postgresql and Rabbitmq.

To create the required databased use the following commands:

CREATE DATABASE bookmarks;
CREATE ROLE bmuser WITH LOGIN PASSWORD 'password1'; 
GRANT ALL PRIVILEGES ON DATABASE bookmarks TO bmuser;

Then run the following command to populate the DB with the required tables:

./node_modules/.bin/node-pg-migrate up

To run the solution components:

  • Worker: npm run worker
  • Server: npm run server
  • Scheduler: npm run scheduler

About

auth0 bookmark checker

License:MIT License


Languages

Language:JavaScript 100.0%