fix: towards a first working version

This commit is contained in:
2024-12-16 11:27:59 +01:00
parent d5be3e7817
commit a46d999217
46 changed files with 18068 additions and 82 deletions

View File

@ -132,7 +132,12 @@ def backend(redis_container, mongo_container):
redis_host, redis_port = redis_container
mongo_host, mongo_port = mongo_container
config = {
"redis": {"host": redis_host, "port": redis_port},
"redis": {
"host": redis_host,
"port": redis_port,
"username": "ingestor",
"password": "ingestor",
},
"mongodb": {"host": mongo_host, "port": mongo_port},
}