import vona.config as config import pycouchdb import os # NOTE: We don't do anything with the DB currently. try: server = pycouchdb.Server(config.db.url) except Exception as e: print(f"[FATL] Could not connect to DB: {e}") os._exit(1) print(f"[INFO] CouchDB version {server.info()['version']}")