The Admin application is used to send commands to Executor.
First, set the correct client ID and server URL in the config.json file. The client ID must match the ID in the Executor configuration. You can also change other properties, although it is optional.
Next, follow these steps:
-
Create virtual environment.
python -m venv .venv
-
Activate virtual environment (on Linux).
source .venv/bin/activateIf you are using Windows, you can do the same with the following command.
call .venv\Scripts\activate -
Install necessary packages.
pip install -r requirements.txt
-
Run the application
python admin.py