Welcome to OmnAIView! Let's get started!
OmnAIView is a modular Open Source frontend application to receive, display, analyse and save time series data from different backends.
The goal of OmnAIView is to create an easy process to get the information you need from the data you have.
The most people don't measure something just to see numbers. They measure because they want information about the data. The process to get this information is hard. Often you need to know how the scientific environment behind your data works. Or need to implement your own algorithm to analyse the data. Or worse : calculate it yourself.
We want to make this better!
- OmnAIView does not only display data from our devices. OmnAIView will support different interfaces for devices, so you can display your data from your device in the software.
- OmnAIView will support REST API. You can connect your analysis to the frontend and analyse data via a button click.
- OmnAIView offers integrated analysis support - whether you're unsure about the mechanics of your scientific data or simply need a mathematical assessment, it's just one click away.
The README.md provides information to get a quick overview and setup the minimal project.
The VISION.md provides the context for this project. Our vision, the intended usergroup and userflow, background about the project. Read this if you want an overview of the project without understanding the codebase.
The ARCHITECTURE.md provides concept descriptions for contributers, from the general concepts of the application to more detailed concepts like adding a datasource. Read this whenever you are unsure where to put what code and how.
The Code is documented with Compodoc. To see the documentation follow these steps:
- Clone the project
- Run
npm ciin the root directory of the project - Run
npm run compodoc:build-and-servein your console - Open the documentation with the link compodoc generates
We are very happy about contributions. If you want to contribute just follow the steps in the CONTRIBUTIONS.md. We will review your contribution as fast as possible.
The project currently contains two separat parts: An angular app and an electron app in which the angular app runs.
- Create a fork of the repository to your own GitHub account.
- Clone the forked repository to your local machine:
git clone git@github.com:AI-Gruppe/OmnAIView.git cd OmnAIView
To install the angular and electron packages, you run npm install, and then npm ciin the root directory.
If you want to run the angular frontend in development mode, you can do so by running npm run start:angular in the root folder.
Once the server is running, open your browser and navigate to http://localhost:4200/. The application will automatically reload whenever you modify any of the source files.
If you want to run the electron application separately in development mode, you can do so by first running npm run build:angular then npm run start:electron.
To build the full project you can do so by running npm run build.
This will compile the angular frontend and electron project and store the build artifacts of the frontend in the dist/ directory. By default, the production build optimizes your application for performance and speed. The electron build installer can be found in the electron/out/make/squirrel.windows/x64/, the application that can be run without installation electron\out\OmnAIView-win32-x64.
Otherwise it is possible to build the angular frontend or the electron project seperately via npm run build:angular or npm run build:electron.
The project was generated using angular v19.1.4. For more information on using the Angular CLI, including detailed command references, visit the Angular CLI Overview and Command Reference page.
OmnAIView is using different data sources. Some are started externally from the application, while others are started together with the application.
To receive data from locally connected OmnAIScopes, the OmnAIScope Dataserver is integrated into the frontend as an autostart component. Version : v0.4.0 GitHub repository: https://github.com/AI-Gruppe/OmnAIScope-DataServer
If some information is missing please create an issue in this repository. We will try to answer your question as fast as possible.