scrachy.settings.defaults.storage.SCRACHY_DB_CONNECT_ARGS

scrachy.settings.defaults.storage.SCRACHY_DB_CONNECT_ARGS: dict[str, Any] = {}

Any other arguments that should be passed to sqla.create_engine(). For example, you could use the following dict to connect to postgresql using ssl:

{
    sslrootcert: "path.to.rootcert",
    sslcert: "path.to.clientcert",
    sslkey: "path.to.clientkey",
    sslmode: "verify-full"
}