Removed start of separate frontend server

This commit is contained in:
2024-07-25 00:37:46 +02:00
parent bfe8479016
commit f179e8e19b
+1 -1
View File
@@ -113,6 +113,6 @@ def start_backend(config):
if __name__ == '__main__': if __name__ == '__main__':
conf = configure() # Read config from file and set up config dict conf = configure() # Read config from file and set up config dict
logger.debug('conf dictionary set to {}'.format(json.dumps(conf, indent=4))) logger.debug('conf dictionary set to {}'.format(json.dumps(conf, indent=4)))
start_frontend(config=conf) # start_frontend(config=conf)
start_backend(config=conf) start_backend(config=conf)