Welcome to Exordos Core!
The Exordos Core is an open source software that offers a one turnkey solution to deal with infrastructure at all levels - from bare metal and virtual machines to applications and services.
Refer to the wiki for more detailed information.
There are several ways to install Exordos Core and depend on your purpose you can choose one of them.
If you want to try Exordos Core in a few minutes, download the all-in-one stand. It's a ready-to-go virtual machine image with preinstalled Exordos Core and ability to get full functionality such as creating inner(nested) virtual machines, installation elements and many others.
This stand may be used for development purposes as well if you are focusing on a new element development.
In a case you would like to run Exordos Core on your own infrastructure, you can use the basic guide for more details.
Ubuntu:
sudo apt-get install build-essential python3.12-dev python3.12-venv \
libev-dev libvirt-dev curl
curl -LsSf https://astral.sh/uv/install.sh | sh
source "$HOME"/.local/bin/env
uv tool install tox --with tox-uvFedora:
sudo dnf install gcc libev-devel libvirt-devel curl
curl -LsSf https://astral.sh/uv/install.sh | sh
source "$HOME"/.local/bin/env
uv tool install tox --with tox-uv Initialize virtual environment:
tox -e develop
source .tox/develop/bin/activateFollow the development guide here for more details.
NOTE: Python version 3.12 is supposed to be used, but you can use other versions
# Unit tests
tox -e py312
# Functional tests
tox -e py312-functionalTo run functional tests, export the following environment variables:
export DATABASE_URI="postgresql://exordos_core:exordos_core@127.0.0.1:5432/exordos_core"
export ADMIN_PASSWORD="admin"
export DEFAULT_CLIENT_SECRET="GenesisCoreSecret"
export GLOBAL_SALT="FOy/2kwwdn0ig1QOq7cestqe"
export HS256_KEY="secret"- Exordos SDK is a set of tools for developing Exordos elements. You can find it here.
- Exordos DevTools it's a set oftools to manager life cycle of genesis projects. You can find it here.
Contributing to the project is highly appreciated! However, some rules should be followed for successful inclusion of new changes in the project:
- All changes should be done in a separate branch.
- Changes should include not only new functionality or bug fixes, but also tests for the new code.
- After the changes are completed and tested, a Pull Request should be created with a clear description of the new functionality. And add one of the project maintainers as a reviewer.
- Changes can be merged only after receiving an approve from one of the project maintainers.