Skip to content

Latest commit

 

History

History
44 lines (40 loc) · 854 Bytes

README.md

File metadata and controls

44 lines (40 loc) · 854 Bytes

ThreatHawk Enrichment

Table of Contents

Installation

To install do the following

  • clone the repository
$ git clone https://github.com/threathawkproject/enrichment.git
  • install the dependencies go into the module
$ cd enrichment
  • install the dependencies via pip
$ pip install -r requirements.txt

How to run

Meilisearch

Running Meilisearch

  • Get docker image
$ docker pull getmeili/meilisearch:v0.30
  • run meilisearch
$ docker run -it --rm -p 7700:7700  -v ./meili_data:/meili_data getmeili/meilisearch:v0.30 meilisearch --env="development"

Enrichment module

To run the module do the following

  • go to src directory
$ cd src
  • run the follwoing command
$ uvicorn main:app --reload