Skip to content

Sagbyy/crime-lab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Groupe

  • Mahamadou GORY KANTÉ
  • Salahe-eddine BOUHDJEUR

Environnement variables

  • web/.env.example

Installation

docker-compose up -d

Seed Neo4j

docker exec -it neo4j cypher-shell -u neo4j -p password -f ./import/seed-neo4j.cypher

Database Schema

MongoDB

graph LR
    subgraph MongoDB Schema
        A[Affaires] --> |embed| T(Temoignages)
        A --> |embed| L(Lieux)
        A --> |reference| I(Individus)
    end
Loading

Neo4j

graph LR
    subgraph Neo4j Schema
        N_I((Individu)) -->|A_APPELE| N_A((Appel))
        N_A -->|RECU_APPEL| N_I
        N_I -->|UTILISE_ANTENNE | N_ANT((Antenne))
    end
Loading