10.0.3 • Published 7 days ago

visyn_core v10.0.3

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
7 days ago

visyn_core

NPM version build

Features

  • Telemetry: OpenTelemetry integration for the three pillar of observability: metrics, logs, and traces

Installation

git clone -b develop https://github.com/datavisyn/visyn_core.git  # or any other branch you want to develop in
cd visyn_core

# Frontend
yarn install

# Backend
python3 -m venv .venv  # create a new virtual environment
source .venv/bin/activate  # active it
make develop  # install all dependencies

Local development

# Frontend
yarn start

# Backend
python visyn_core

Testing

# Frontend
yarn run test

# Backend
make test

Building

yarn run build