{"id":19510435,"url":"https://github.com/sintef-9012/dtops","last_synced_at":"2025-02-25T23:12:33.016Z","repository":{"id":200702834,"uuid":"681998274","full_name":"SINTEF-9012/DTOps","owner":"SINTEF-9012","description":"DTOps: A Digital Twin dashboard for DevOps and TechDebt based on neodash","archived":false,"fork":false,"pushed_at":"2023-10-30T11:56:58.000Z","size":36322,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-01-08T11:47:23.378Z","etag":null,"topics":["devops","digitaltwin","techdebt"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SINTEF-9012.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-23T08:07:40.000Z","updated_at":"2024-05-02T08:07:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"dadf136e-06e5-4959-a13c-d5a3aaeb657d","html_url":"https://github.com/SINTEF-9012/DTOps","commit_stats":null,"previous_names":["sintef-9012/dtops"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SINTEF-9012%2FDTOps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SINTEF-9012%2FDTOps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SINTEF-9012%2FDTOps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SINTEF-9012%2FDTOps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SINTEF-9012","download_url":"https://codeload.github.com/SINTEF-9012/DTOps/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240761142,"owners_count":19853256,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["devops","digitaltwin","techdebt"],"created_at":"2024-11-10T23:15:53.734Z","updated_at":"2025-02-25T23:12:32.971Z","avatar_url":"https://github.com/SINTEF-9012.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DTOps: A Digital Twin dashboard for DevOps and TechDebt based on neodash\n\n## Installation\n\nnode version v20.2.0\nyarn version 1.22.19\n\n## Preparation\n\nLaunch databases in docker:\n\n```bash\ndocker compose up\n```\n\nOpen Neo4j Browser at http://localhost:7474\nuser name: neo4j, password: sindit-neo4j\n\nIf the database is empty, copy the content in samples/sample-data.cypher and past it into the query box, then execute the query.\n\n## Install dependencies\n\n```\nyarn install\n```\n\n## Start up\n\n```\nyarn run dev\n```\n\nOpen 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.\n\n# Configuration\n\nThe configuration instructions can be found in the file \"DTOps_tool_configuration.pdf\" in the \"docs\" folder.\n\n# DTOps other features (to be integrated soon)\n\n1. Architecture Debt: Microservices (Temporal) Coupling Metrics and Visualization\n\n   1.1 (Temporal) Coupling Metrics\n\n   1.2 Visualization(s)\n\n2. DevOps metrics\n\n   2.1 DORA metrics\n\n   2.2 DevOps process metrics\n\n\n# Original README from NeoDash\n\n## NeoDash - Neo4j Dashboard Builder\n\nNeoDash is an open source tool for visualizing your Neo4j data. It lets you group visualizations together as dashboards, and allow for interactions between reports.\n\n![screenshot](public/screenshot.png)\n\nNeodash 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.\n\n## Try NeoDash\n\nYou can run NeoDash in one of three ways:\n\n1. You can install NeoDash into Neo4j Desktop from the [graph app gallery](https://install.graphapp.io). NeoDash will automatically connect to your active database.\n2. You can run NeoDash from a web browser by visiting http://neodash.graphapp.io.\n3. For on-prem deployments, you can build the application yourself, or pull the latest Docker image from Docker Hub.\n\n```\n# Run the application on http://localhost:5005\ndocker pull neo4jlabs/neodash:latest\ndocker run -it --rm -p 5005:5005 neo4jlabs/neodash\n```\n\n\u003e Windows users may need to prefix the `docker run` command with `winpty`.\n\n## Build and Run\n\nThis project uses `yarn` to install, run, build prettify and apply linting to the code.\n\nTo install dependencies:\n\n```\nyarn install\n```\n\nTo run the application in development mode:\n\n```\nyarn run dev\n```\n\nTo build the app for deployment:\n\n```\nyarn run build\n```\n\nTo manually prettify all the project `.ts` and `.tsx` files, run:\n\n```\nyarn run format\n```\n\nTo manually run linting of all your .ts and .tsx files, run:\n\n```\nyarn run lint\n```\n\nTo manually run linting of all your .ts and .tsx staged files, run:\n\n```\nyarn run lint-staged\n```\n\nSee the [Developer Guide](https://neo4j.com/labs/neodash/2.2/developer-guide/) for more on installing, building, and running the application.\n\n### Pre-Commit Hook\n\nWhile 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.\n\nThere is also a dedicated linting step in the Github project pipeline in order to catch each potential inconsistency.\n\n\u003e Don't hesitate to setup your IDE formatting feature to use the Prettier module and our defined rules (.prettierrc.json).\n\n## User Guide\n\nNeoDash 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/).\n\n## Publish Dashboards\n\nAfter 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.\n\n## Questions / Suggestions\n\nIf you have any questions about NeoDash, please reach out to the maintainers:\n\n- Create an [Issue](https://github.com/neo4j-labs/neodash/issues/new) on GitHub for feature requests/bugs.\n- Connect with us on the [Neo4j Discord](https://neo4j.com/developer/discord/).\n- Create a post on the Neo4j [Community Forum](https://community.neo4j.com/).\n\n\u003e 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.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsintef-9012%2Fdtops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsintef-9012%2Fdtops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsintef-9012%2Fdtops/lists"}