Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evanrolfe/trayce_gui
https://github.com/evanrolfe/trayce_gui
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/evanrolfe/trayce_gui
- Owner: evanrolfe
- License: gpl-3.0
- Created: 2024-01-06T09:52:16.000Z (almost 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-08T20:34:02.000Z (28 days ago)
- Last Synced: 2024-12-23T01:03:41.263Z (13 days ago)
- Language: Python
- Size: 1.62 MB
- Stars: 386
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-starred - evanrolfe/trayce_gui - (Python)
- awesome-starred - evanrolfe/trayce_gui - (Python)
README
# TrayceGUI
![](https://img.shields.io/badge/python-3.11-blue) ![](https://img.shields.io/badge/Qt-6-blue) [![Pntest.io](https://img.shields.io/badge/Website-orange)](https://trayce.dev/)TrayceGUI is a cross-platform desktop application which lets you interface with the [TrayceAgent](https://github.com/evanrolfe/trayce_agent/) to monitor network requests in Docker containers.
![](https://github.com/evanrolfe/trayce_gui/blob/main/screenshot.jpg)
## Build
See the [Build Guide](https://github.com/evanrolfe/trayce_gui/blob/main/BUILD.md).
## Develop
Get started by setting up a Python virtual env.
```bash
python3.11 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
pip install -r dev-requirements.txt
```## Run
```
make run
```## Test
```
make test
```
Or run specific test(s):
```
make test -- -k describe_containers_dialog
```