https://github.com/release-engineering/resultsdb_frontend
Simple frontend for ResultsDB
https://github.com/release-engineering/resultsdb_frontend
Last synced: 4 months ago
JSON representation
Simple frontend for ResultsDB
- Host: GitHub
- URL: https://github.com/release-engineering/resultsdb_frontend
- Owner: release-engineering
- License: gpl-2.0
- Created: 2021-06-03T19:26:02.000Z (about 5 years ago)
- Default Branch: develop
- Last Pushed: 2026-02-28T17:07:34.000Z (4 months ago)
- Last Synced: 2026-02-28T19:54:56.757Z (4 months ago)
- Language: Python
- Homepage: https://taskotron.fedoraproject.org/resultsdb/results
- Size: 197 KB
- Stars: 2
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ResultsDB frontend
ResultsDB fronted is a simple application that allows browsing the data stored inside ResultsDB.
## Repositories
* ResultsDB - [GIT repo](https://pagure.io/taskotron/resultsdb)
* ResultsDB Client Library - [GIT repo](https://pagure.io/taskotron/resultsdb_api)
## Quick development setup
You'll need to stand up an instance of the core
[resultsdb](https://pagure.io/taskotron/resultsdb) alongside this frontend
for it to work.
First, clone the repository.
Then, setup a virtual environment for development:
$ sudo dnf install python-virtualenv python-pip
$ virtualenv env_resultsdb_frontend
$ source env_resultsdb_frontend/bin/activate
$ pip install -r requirements.txt
Run the server:
$ DEV=true python runapp.py
The ResultsDB frontend is now running at . It expects
the ResultsDB server to be available at .
## Adjusting configuration
You can configure this app by copying `conf/settings.py.example` into
`conf/setting.py` and adjusting values as you see fit. It overrides default
values in `resultsdb_frontend/config.py`.
## Using with libtaskotron
You might want to use this tool together with libtaskotron. To use your own
*ResultsDB frontend* in libtaskotron, edit `/etc/taskotron/taskotron.yaml` and
set the following value::
resultsdb_frontend: http://localhost:5002