From f098b3ac4c5efad62efb5dfa0110d23989fb67ab Mon Sep 17 00:00:00 2001 From: David Perl Date: Thu, 15 May 2025 14:33:25 +0200 Subject: [PATCH] fix: add get_config() template --- .../bec_ipython_client/startup/pre_startup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/template/{{project_name}}/bec_ipython_client/startup/pre_startup.py b/template/{{project_name}}/bec_ipython_client/startup/pre_startup.py index 1132c92..972a34a 100644 --- a/template/{{project_name}}/bec_ipython_client/startup/pre_startup.py +++ b/template/{{project_name}}/bec_ipython_client/startup/pre_startup.py @@ -14,3 +14,10 @@ def extend_command_line_args(parser): # parser.add_argument("--session", help="Session name", type=str, default="cSAXS") return parser + + +# def get_config() -> ServiceConfig: +# """ +# Create and return the service configuration. +# """ +# return ServiceConfig(redis={"host": "localhost", "port": 6379})