Installation

For proper installation you need to clone project from git.

Surroundings

The service can be installed on AlmaLinux 9.

Required predefined dependencies:

  • Python of version 3.13 is required.

  • It is strongly recommended to create virtual surroundings for python dependencies installation.

  • Python setuptools module can be installed via pip (pip install setuptools).

Dependencies installation

After surroundings installation launch pip install with “-r requirements.txt” parameter.

pip install -r requirements.txt

Configuration

After dependencies installation configuration file should be set. File is placed in “./luna_handlers/configs/config.conf”.

Environment preparation

  • Launch storages tool provided by VisionLabs for database, Luna-Image-Store buckets and monitoring bucket(s)

preparation. The storages tool also applies all the available migrations for the database.

First launch and testing

If all previous actions are executed successfully, server is ready to work. To start server please launch run.py script. While start you can add arguments: server message port and path to config file if it is not in default location. By default 5090 port is used. Example:

./run.py --port=5091 --config=./configs/devconfig.conf

After server is started, testing is recommended. To perform testing execute command

python -m unittest tests.unittests_main

All tests should perform successfully.