From e032fc4320d5ba13d5e823771a93a021eb8fb460 Mon Sep 17 00:00:00 2001 From: Samuel Sloniker Date: Sun, 20 Jun 2021 16:22:59 -0700 Subject: [PATCH] Support changing config path The path to the config file is accepted as an argument --- server/wss.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/server/wss.py b/server/wss.py index 5f5a2cb..c9332eb 100644 --- a/server/wss.py +++ b/server/wss.py @@ -17,10 +17,15 @@ import imgproc as hcapi import argon2 import asyncio import importlib -import parse_config +import parse_config +import sys +try: + conf = sys.argv[1] +except IndexError: + conf = 'conf.txt' -with open('conf.txt') as f: +with open(conf) as f: config_data = parse_config.load(f) hcapi.backend = importlib.import_module(f'backends.{config_data["backend"]}')