Skip to content

Index

The configdb-server package

Documentation can be found here.

Installation and Setup

Build & Publish

uv build
uv publish --index gitlab --token $(cat ~/.gitlab-token)

Alembic

To create a new schema revision use (make sure sqlalchemy.url in alembic.ini is set properly):

cd configdb_server
alembic revision --autogenerate -m "comment"
To apply it use the:
alembic upgrade head
or use the function from the configdb-server package.