Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaaql/jaaql-monitor
Provides a standalone executable that can communicate with JAAQL, submitting .sql files or .jaaql
https://github.com/jaaql/jaaql-monitor
Last synced: 28 days ago
JSON representation
Provides a standalone executable that can communicate with JAAQL, submitting .sql files or .jaaql
- Host: GitHub
- URL: https://github.com/jaaql/jaaql-monitor
- Owner: JAAQL
- License: other
- Created: 2022-07-13T09:40:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-03T16:30:55.000Z (10 months ago)
- Last Synced: 2024-05-03T21:23:35.085Z (9 months ago)
- Language: Python
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Usage
JAAQL Monitor can be called as suchjaaql_monitor.exe creds_file
Where creds_file is a file of the formatjaaql_url
username
passwordAnd as an example
jaaql.io
superjaaql
passw0rdThen it will accept input over standard input. Scripts can be separated via \p and \g. \p Will print everything in the standard input so far (since the last \g) and \g will submit everything in the standard input so far to jaaql (since the last \g). So \p\g will print and submit to jaaql. Any errors which we receive will be output on stdin and stderr
# Building
To build you will need to have a python environment (3.8) setup locally. Building will produce a windows executable (the latest executable is in the repo if you require it). If you are on linux you can create an executable as well but you need to install python to do that so you might as well just use the python script. To build please run the commands below./build.bat
# Running locally
Please install requirements.txt. Using python 3.11