Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 628 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 628 Bytes

Nats Logger

service to log nats event to database

Development

to develop this project you should have these tools

  • go with go module enabled
  • make utility
  • gcc to compile some deps. that required CGO functionality

compile binary using this command

make all

to just run this project, make sure you install deps before run

make init # (optional) for first build only
make run

Indexing

to make index on payload data

CREATE INDEX eventpayload ON event_models USING GIN (payload jsonb_path_ops);