New build.
All checks were successful
Build and test Zhurnal / Test (push) Successful in 2m3s

This commit is contained in:
retoor 2024-12-10 01:38:31 +01:00
parent 983969ed9e
commit eb4b0b8575
6 changed files with 35 additions and 2 deletions

BIN
dist/zhurnal-1.4.37-py3-none-any.whl vendored Normal file

Binary file not shown.

Binary file not shown.

View File

@ -1,3 +1,25 @@
Metadata-Version: 2.1
Name: zhurnal
Version: 0.0.0
Version: 1.4.37
Summary: Web executor and logger
Author: retoor
Author-email: retoor@molodetz.nl
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: aiohttp
Requires-Dist: app@ git+https://molodetz.nl/retoor/app.git
# Zhurnal
Application for running and monitoring multiple applications.
The monitoring goes trough web.
The web interface will show life updates of stdout and stderr of configured applications.
## Installation
1. Run `make`. This will build envionment and will install the application.
2. Run Zhurnal with the commands as parameters followed by the host / port to serve on. `./.venv/bin/zhurnal "ping google.nl" "ping google.nl" --host=127.0.0.1 --port=8081`
## Todo
1. Optional Basic Auth configurable trough command line.
2. Process filtering in web interface by pressing a digit. Escape to show all processes.

View File

@ -1,6 +1,13 @@
README.md
pyproject.toml
setup.cfg
src/zhurnal/__init__.py
src/zhurnal/app.py
src/zhurnal.egg-info/PKG-INFO
src/zhurnal.egg-info/SOURCES.txt
src/zhurnal.egg-info/dependency_links.txt
src/zhurnal.egg-info/top_level.txt
src/zhurnal.egg-info/entry_points.txt
src/zhurnal.egg-info/requires.txt
src/zhurnal.egg-info/top_level.txt
src/zhurnal/tests/__init__.py
src/zhurnal/tests/app.py

View File

@ -0,0 +1,2 @@
[console_scripts]
zhurnal = zhurnal.app:cli

View File

@ -0,0 +1,2 @@
aiohttp
app@ git+https://molodetz.nl/retoor/app.git