Backend for ewoksweb
Project description
ewoksserver
ewoksserver is a REST server to manage and execute ewoks workflows.
It serves as a backend for ewoksweb and emits ewoks execution events over Socket.IO.
Getting started
Install the ewoksserver Python package
pip install ewoksserver
Development
Install from source
pip install -e .[dev]
Run tests
pytest
Launch the backend
ewoks-server
or for an installation with the system python
python3 -m ewoksserver.server
Configuration
The configuration keys are uppercase variables in a python script:
# /tmp/config.py
RESOURCE_DIRECTORY = "/path/to/resource/directory/"
EWOKS = {"handlers": ...}
CELERY = {"broker_url":...}
Specify the configuration file through the CLI
ewoks-server --config /tmp/config.py
or using the environment variable EWOKSSERVER_SETTINGS
export EWOKSSERVER_SETTINGS=/tmp/config.py
ewoks-server
Example
import os
_SCRIPT_DIR = os.path.abspath(os.path.dirname(__file__))
RESOURCE_DIRECTORY = os.path.join(_SCRIPT_DIR, "resources")
EWOKS = {
"handlers": [
{
"class": "ewokscore.events.handlers.Sqlite3EwoksEventHandler",
"arguments": [
{
"name": "uri",
"value": "file:" + os.path.join(_SCRIPT_DIR, "ewoks_events.db"),
}
],
}
]
}
Documentation
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ewoksserver-1.3.0.tar.gz
(36.3 kB
view details)
File details
Details for the file ewoksserver-1.3.0.tar.gz
.
File metadata
- Download URL: ewoksserver-1.3.0.tar.gz
- Upload date:
- Size: 36.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa046597a8d172aac79f9ec14636802f2bc14f193bce3ee3ab6886b5cdaa80f5 |
|
MD5 | 1b222ffe304f90a0728c3747f0ffc3ec |
|
BLAKE2b-256 | bb56e71bf1b1a7198e11ac9ce7555bfacdbe01f666e8e08dd4163cc65ab151e2 |