Skip to content

Installation


Centurion ERP is a simple application to deploy with the only additional requirements being that you have already deployed a database server and a RabbitMQ server. Centurion ERP is container based and is deployable via Docker or upon Kubernetes. Our images are available on Docker Hub.

TL;DR

docker pull nofusscomputing/centurion-erp:latest.

Installation

Basic installation steps are as follows:

  1. Deploy a Database Server

  2. Deploy a RabbitMQ Server

  3. Deploy a Web container for Centurion ERP

  4. Deploy a Worker container for Centurion ERP

  5. Add settings file to path /etc/itsm/settings.py for both Centurion ERP containers.

  6. Run migrations

    • Docker docker exec -ti <container name or id> -- python manage.py migrate

    • Kubernetes kubectl exec -ti -n <namespace> deploy/<deployment-name> -- python manage.py migrate

Database Server

As Centurion ERP is uses the Django Framework, Theoretically Every Django supported database is available. The reality is however, that we have only used PostgreSQL Server with Centurion ERP. By default if no database is configured a SQLite database will be used. This allows tests to function and to quickly spin up a deployment for testing.

RabbitMQ Server

Centurion ERP uses RabbitMQ as for its worker queue. As tasks are created when using Centurion ERP, they are added to the RabbitMQ server for the background worker to pickup. When the background worker picks up the task, it does it's business, clears the task from the RabbitMQ server and saves the results within the Database.

Web Container

The web container is the guts of Centurion ERP. It provides the interface and endpoints for interacting with Centurion ERP. This container is scalable with the only additional requirement being that a load-balancer be placed in front of all web containers for traffic routing. If deploying to Kubernetes the service load-balancer is sufficient and setting the deployment replicas to the number of desired containers is the simplest method to scale.

Background Worker Container

The Background Worker container is a worker that waits for tasks sent to the RabbitMQ server. The worker is based upon Celery. On the worker not being busy, it'll pickup and run the task. This container is scalable with nil additional requirements for launching additional workers. If deploying to Kubernetes the setting the deployment replicas to the number of desired containers is the simplest method to scale. The container start command will need to be set to celery -A app worker -l INFO so that the worker is started on container startup.

Configuration for the worker resides in directory /etc/itsm/ within the container. see below for the CELERY_ configuration.

Settings file

The settings file is a python file .py and must remain a valid python file for the application to work. Settings for the application are stored within a docker volume at path /etc/itsm/, with the settings living in .py files. A database is also required for the application to store it's settings. SQLLite and MariaDB/MySQL are supported.

settings.py
# ITSM Docker Settings

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': '/data/db.sqlite3',
    }
}

#
# Example MariaDB/MySQL setup
#
# DATABASES = {
#     'default': {
#         'ENGINE': 'django.db.backends.mysql',
#         'NAME': 'itsm',
#         'USER': '<db username>',
#         'PASSWORD': '<db password>',
#         'HOST': '<db host/ip address>',
#         'PORT': '',
#     }
# }

#
#
#
# CELERY_BROKER_URL = 'amqp://<username>:<password>@<host>:<port>/[<message host>]'  # 'amqp://' is the connection protocol

Migrations

Migrations serve the purpose of setting up the database. On initial deployment of Centurion ERP migrations must be run as must they be on any upgrade.

Updating

We use semver versioning for Centurion ERP. Using this method of versioning enables us to clearly show what versions will have breaking changes. You can rest assured that every version whose Major version number remains the same will not break your deployment. Release notes are available within the repository root and are a running document for the current Major release. To locate the release notes for your particular version please select the release tag from the branches drop-down. We will use the release notes to denote Any Breaking changes.

Updating to a newer version of Centurion ERP is as simple as backing up your database and RabbitMQ server, then updating the deployed image to the desired version and running the database migrations.

About:

This page forms part of our Project Centurion ERP.

Page Metadata
Version: ToDo: place files short git commit here
Date Created: 2024-07-19
Date Edited: 2024-07-19

Contribution:

Would You like to contribute to our Centurion ERP project? You can assist in the following ways:

 

ToDo: Add the page list of contributors