This commit is contained in:
parent
983969ed9e
commit
eb4b0b8575
BIN
dist/zhurnal-1.4.37-py3-none-any.whl
vendored
Normal file
BIN
dist/zhurnal-1.4.37-py3-none-any.whl
vendored
Normal file
Binary file not shown.
BIN
dist/zhurnal-1.4.37.tar.gz
vendored
BIN
dist/zhurnal-1.4.37.tar.gz
vendored
Binary file not shown.
@ -1,3 +1,25 @@
|
|||||||
Metadata-Version: 2.1
|
Metadata-Version: 2.1
|
||||||
Name: zhurnal
|
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.
|
||||||
|
@ -1,6 +1,13 @@
|
|||||||
|
README.md
|
||||||
pyproject.toml
|
pyproject.toml
|
||||||
|
setup.cfg
|
||||||
|
src/zhurnal/__init__.py
|
||||||
src/zhurnal/app.py
|
src/zhurnal/app.py
|
||||||
src/zhurnal.egg-info/PKG-INFO
|
src/zhurnal.egg-info/PKG-INFO
|
||||||
src/zhurnal.egg-info/SOURCES.txt
|
src/zhurnal.egg-info/SOURCES.txt
|
||||||
src/zhurnal.egg-info/dependency_links.txt
|
src/zhurnal.egg-info/dependency_links.txt
|
||||||
|
src/zhurnal.egg-info/entry_points.txt
|
||||||
|
src/zhurnal.egg-info/requires.txt
|
||||||
src/zhurnal.egg-info/top_level.txt
|
src/zhurnal.egg-info/top_level.txt
|
||||||
|
src/zhurnal/tests/__init__.py
|
||||||
|
src/zhurnal/tests/app.py
|
2
src/zhurnal.egg-info/entry_points.txt
Normal file
2
src/zhurnal.egg-info/entry_points.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
[console_scripts]
|
||||||
|
zhurnal = zhurnal.app:cli
|
2
src/zhurnal.egg-info/requires.txt
Normal file
2
src/zhurnal.egg-info/requires.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
aiohttp
|
||||||
|
app@ git+https://molodetz.nl/retoor/app.git
|
Loading…
Reference in New Issue
Block a user