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: 3 months 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 (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-02T08:13:23.000Z (3 months ago)
- Last Synced: 2024-08-02T22:46:45.678Z (3 months ago)
- Language: Python
- Size: 1.64 MB
- Stars: 215
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
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
```