Giveth / notification-center

It's a microservice that would handle all notification of giveth.io and trace.giveth.io
GNU General Public License v3.0
24 stars 2 forks source link

It's forked from https://github.com/Giveth/apiGive

Notification Center

This is a microservice for managing notifications for both https://giveth.io and other Dapps notifications

Used Technologies

Installation

Test

Logs

Migrations

References

Used_Technologies

Installation and Run

Test

You should have a postgress instance up in order to running tests so you can use Local DB docker-compose

Logs

In localhost and test we put logs in console and file but in production and staging we just use file for writing logs You can see logs beautifully with this command

Migrations

Create new Migration file

typeorm migration:create ./migrations/createNotificationTable

Then you need to run the migrations like so

npm run db:migrate:run:local

If you want to revert last migration

npm run db:migrate:revert:local

Create Third party in DB

As we can't put inserting third parties in migration, I put a query sample here, we can use it in prod

  INSERT INTO public.third_party(
  "microService", secret, "isActive")
  VALUES ('givethio', 'givethio_secret', true);

Local test

If you use mock jwt authentication adapter you can use accessToken

eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwdWJsaWNBZGRyZXNzIjoiMHgxMUJFNTVGNGVBNDFFOTlBM2ZiMDZBRGRBNTA3ZDk5ZDdiYjBhNTcxIiwiZXhwaXJhdGlvbkRhdGUiOiIyMDIyLTA5LTIzVDA4OjA5OjA2LjQ1N1oiLCJqdGkiOiIxNjYxMzI4NTQ2NDU3LTc1YzNhNGI2YWUiLCJpYXQiOjE2NjEzMjg1NDYsImV4cCI6MTY2MzkyMDU0Nn0.Tdd2f7bCMtg3F1ojX1AQQpJ7smTU7vR7Nixromr0ju4

References

I used these articles for writing project