Skip to content
Snippets Groups Projects
develop-sib-ldp-packages.rst 1.02 KiB

How to develop SIB server packages

LDP packages represent capabilites the server could support. Each may have it's own configuration depending of what mission it fulfills. There is no limit of what a LDP package can do.

Requirements

A SIB server in development mode

Create your package

From the project directory (the folder where the manage.py resides) create a new package structure:

sib startpackage mypack

Add your package to the packages.yml:

ldppackages:
    mypack: mypack

Then initiate your server backend:

sib install sib_server

Note: It is important to run this command from the project directory in order for the manager to find your package. Finally, you can run your server as usual to see your new package's data.

Warning

The section should be improve