995bd2aa45
Bumps [ujson](https://github.com/ultrajson/ultrajson) from 5.1.0 to 5.2.0. - [Release notes](https://github.com/ultrajson/ultrajson/releases) - [Commits](https://github.com/ultrajson/ultrajson/compare/5.1.0...5.2.0) --- updated-dependencies: - dependency-name: ujson dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
dist | ||
grzegorz_clients | ||
.envrc | ||
.gitignore | ||
LICENSE | ||
README.md | ||
dev.sh | ||
poetry.lock | ||
pyproject.toml |
README.md
Gregorz Clients
A set of simple API endpoints and ready-to-go clients to interface with the Grzegorz API
Working clients:
- A webUI client made with REMI
Planned future clients:
- CLI client
- WebExtensions browser extension
How to run this
As the user intended to run the server:
pip install --user git+https://github.com/Programvareverkstedet/grzegorz_clients.git#master
grzegorz-webui --host 0.0.0.0 --port 80
It's rather insecure and could use a reverse proxy and some whitelisting. ;)
Making the webui run on boot
Modify and copy the files in dist
to $HOME/.config/systemd/user
, then run the following commands as the user intended to run the server:
$ systemctl --user enable grzegorz_webui.service
$ systemctl --user start grzegorz_webui.service
Development
Setup virtual environment and running the server:
poetry install
grzegorz-webui --no-volume
If you also run a local instance of the Grzegorz API:
grzegorz-webui --api-base http://localhost:8000/api
If you plan on making changes to the code, preferably install entr
and use the supplied script dev.sh
.
It will restart the server every time you change any of the files tracked by git.
./dev.sh --api-base http://localhost:8000/api
License
Licensed under BSD 3 clause, see the file LICENSE for more details
This uses the library REMI by dddomodossola, which is licensed under apache2. This license may be read over here