You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser = argparse.ArgumentParser(description="Run a Summoner server with a specified config.")
parser.add_argument('--config', dest='config_path', required=False, help='The relative path to the config file (JSON) for the server (e.g., --config myproject/server_config.json)')
args = parser.parse_args()
myserver = SummonerServer(name="MyServer")
myserver.run(config_path=args.config_path or "configs/server_config.json")