Web application used for analysis of communities in multi layer networks, written in dotnet core and react. Algorithms for community detection are used from the mncd library.
- Install packages
make dep
- Run application
make dev
You can use the ghcr.io/matejkubinec/mncd-app:edge
to setup the app or use the compose file below:
services:
mncd-app:
container_name: mncd-app
image: ghcr.io/matejkubinec/mncd-app:edge
ports:
- 8080:8080
environment:
- MNCD_VISUALIZATION_URL=http://mncd-viz:5050
mncd-viz:
container_name: mncd-viz
image: ghcr.io/matejkubinec/mncd-viz:edge
restart: unless-stopped
ports:
- 5050:5050