Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sintef-9012/dtops
DTOps: A Digital Twin dashboard for DevOps and TechDebt based on neodash
https://github.com/sintef-9012/dtops
devops digitaltwin techdebt
Last synced: about 1 month ago
JSON representation
DTOps: A Digital Twin dashboard for DevOps and TechDebt based on neodash
- Host: GitHub
- URL: https://github.com/sintef-9012/dtops
- Owner: SINTEF-9012
- License: apache-2.0
- Created: 2023-08-23T08:07:40.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-30T11:56:58.000Z (about 1 year ago)
- Last Synced: 2024-05-02T22:11:39.820Z (8 months ago)
- Topics: devops, digitaltwin, techdebt
- Language: TypeScript
- Homepage:
- Size: 34.6 MB
- Stars: 0
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE
Awesome Lists containing this project
README
# DTOps: A Digital Twin dashboard for DevOps and TechDebt based on neodash
## Installation
node version v20.2.0
yarn version 1.22.19## Preparation
Launch databases in docker:
```bash
docker compose up
```Open Neo4j Browser at http://localhost:7474
user name: neo4j, password: sindit-neo4jIf the database is empty, copy the content in samples/sample-data.cypher and past it into the query box, then execute the query.
## Install dependencies
```
yarn install
```## Start up
```
yarn run dev
```Open the dashboard in browser: http://localhost:3000, choose "Existing Dashboard". In the opened dialog, choose neo4j database from localhost, 7687 (should be the default one). Same user name and password as above.
# Configuration
The configuration instructions can be found in the file "DTOps_tool_configuration.pdf" in the "docs" folder.
# DTOps other features (to be integrated soon)
1. Architecture Debt: Microservices (Temporal) Coupling Metrics and Visualization
1.1 (Temporal) Coupling Metrics
1.2 Visualization(s)
2. DevOps metrics
2.1 DORA metrics
2.2 DevOps process metrics
# Original README from NeoDash
## NeoDash - Neo4j Dashboard Builder
NeoDash is an open source tool for visualizing your Neo4j data. It lets you group visualizations together as dashboards, and allow for interactions between reports.
![screenshot](public/screenshot.png)
Neodash supports presenting your data as tables, graphs, bar charts, line charts, maps and more. It contains a Cypher editor to directly write the Cypher queries that populate the reports. You can save dashboards to your database, and share them with others.
## Try NeoDash
You can run NeoDash in one of three ways:
1. You can install NeoDash into Neo4j Desktop from the [graph app gallery](https://install.graphapp.io). NeoDash will automatically connect to your active database.
2. You can run NeoDash from a web browser by visiting http://neodash.graphapp.io.
3. For on-prem deployments, you can build the application yourself, or pull the latest Docker image from Docker Hub.```
# Run the application on http://localhost:5005
docker pull neo4jlabs/neodash:latest
docker run -it --rm -p 5005:5005 neo4jlabs/neodash
```> Windows users may need to prefix the `docker run` command with `winpty`.
## Build and Run
This project uses `yarn` to install, run, build prettify and apply linting to the code.
To install dependencies:
```
yarn install
```To run the application in development mode:
```
yarn run dev
```To build the app for deployment:
```
yarn run build
```To manually prettify all the project `.ts` and `.tsx` files, run:
```
yarn run format
```To manually run linting of all your .ts and .tsx files, run:
```
yarn run lint
```To manually run linting of all your .ts and .tsx staged files, run:
```
yarn run lint-staged
```See the [Developer Guide](https://neo4j.com/labs/neodash/2.2/developer-guide/) for more on installing, building, and running the application.
### Pre-Commit Hook
While commiting, a pre-commit hook will be executed in order to prettify and run the Linter on your staged files. Linter warnings are currently accepted. The commands executed by this hook can be found in /.lintstagedrc.json.
There is also a dedicated linting step in the Github project pipeline in order to catch each potential inconsistency.
> Don't hesitate to setup your IDE formatting feature to use the Prettier module and our defined rules (.prettierrc.json).
## User Guide
NeoDash comes with built-in examples of dashboards and reports. For more details on the types of reports and how to customize them, see the [User Guide](https://neo4j.com/labs/neodash/2.2/user-guide/).
## Publish Dashboards
After building a dashboard, you can chose to deploy a read-only, standalone instance for users. See [Publishing](https://neo4j.com/labs/neodash/2.2/user-guide/publishing/) for more on publishing dashboards.
## Questions / Suggestions
If you have any questions about NeoDash, please reach out to the maintainers:
- Create an [Issue](https://github.com/neo4j-labs/neodash/issues/new) on GitHub for feature requests/bugs.
- Connect with us on the [Neo4j Discord](https://neo4j.com/developer/discord/).
- Create a post on the Neo4j [Community Forum](https://community.neo4j.com/).> NeoDash is a free and open-source tool developed by the Neo4j community - not an official Neo4j product. If you have a need for a commercial agreement around training, custom extensions or other services, please contact the [Neo4j Professional Services](https://neo4j.com/professional-services/) team.