diff --git a/dist/zhurnal-1.4.37-py3-none-any.whl b/dist/zhurnal-1.4.37-py3-none-any.whl new file mode 100644 index 0000000..689c854 Binary files /dev/null and b/dist/zhurnal-1.4.37-py3-none-any.whl differ diff --git a/dist/zhurnal-1.4.37.tar.gz b/dist/zhurnal-1.4.37.tar.gz index 9695be1..feec947 100644 Binary files a/dist/zhurnal-1.4.37.tar.gz and b/dist/zhurnal-1.4.37.tar.gz differ diff --git a/src/zhurnal.egg-info/PKG-INFO b/src/zhurnal.egg-info/PKG-INFO index 7d8530a..0a23dee 100644 --- a/src/zhurnal.egg-info/PKG-INFO +++ b/src/zhurnal.egg-info/PKG-INFO @@ -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. diff --git a/src/zhurnal.egg-info/SOURCES.txt b/src/zhurnal.egg-info/SOURCES.txt index dbc5629..c050761 100644 --- a/src/zhurnal.egg-info/SOURCES.txt +++ b/src/zhurnal.egg-info/SOURCES.txt @@ -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 \ No newline at end of file +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 \ No newline at end of file diff --git a/src/zhurnal.egg-info/entry_points.txt b/src/zhurnal.egg-info/entry_points.txt new file mode 100644 index 0000000..912c411 --- /dev/null +++ b/src/zhurnal.egg-info/entry_points.txt @@ -0,0 +1,2 @@ +[console_scripts] +zhurnal = zhurnal.app:cli diff --git a/src/zhurnal.egg-info/requires.txt b/src/zhurnal.egg-info/requires.txt new file mode 100644 index 0000000..b290cb7 --- /dev/null +++ b/src/zhurnal.egg-info/requires.txt @@ -0,0 +1,2 @@ +aiohttp +app@ git+https://molodetz.nl/retoor/app.git