()
| 64 | |
| 65 | |
| 66 | async def start_server(): |
| 67 | await auth_svc.apply(app_svc.application, BaseWorld.get_config("users")) |
| 68 | runner = web.AppRunner(app_svc.application) |
| 69 | await runner.setup() |
| 70 | await web.TCPSite( |
| 71 | runner, BaseWorld.get_config("host"), BaseWorld.get_config("port") |
| 72 | ).start() |
| 73 | |
| 74 | |
| 75 | def run_tasks(services, run_vue_server=False): |
no test coverage detected