-
Notifications
You must be signed in to change notification settings - Fork 3
Audit Service
Aishwarya Vijay Sinhasane edited this page Feb 4, 2022
·
5 revisions
This microservice is used to keep track of the audit data of users.
Here database used is the PostgreSQL database. So we need to do setup for the database as below.
Install Postgres 11.6
- psql postgres
- create database audit_service_test;
- create user audit_service_test with encrypted password 'audit_service_test';
- grant all privileges on database audit_service_test to audit_service_test;
- Install npm of version 6.4.1
- npm -v
- Install node v10
- node -v
- npm install
- npm run db:all:migrate
- npm start
- Create migration
- sequelize migration:generate --name [migraton-name]
Port - 5001
- Architecture
- Workflows & Use Case Diagram
- API Reference
- API Reference for Merra Data
- Microservices
- Local Installation
- Scalability