def __init__()

in server/app/lib/config.py [0:0]


    def __init__(self, yml: dict):
        if yml:
            # TODO: More verbosity here. We only need the raw dict to pass to the DSN constructor.
            assert all(key in yml for key in ("host", "user", "password", "dbname",)), "Jira PSQL config is missing information!"
            self.yaml = yml
        else:
            self.yaml = {} # ensure attribute exists