11runner_path = os.path.join(
12 cwd,
".build",
"meson-quick",
"examples",
"example_runner.exe"
14dll_path = os.path.join(cwd,
".build",
"meson-quick",
"examples",
"example-Server.dll")
16print(
"Starting server (will run in foreground)...")
17print(
"Open another terminal and run:")
18print(
" curl http://localhost:8080/")
19print(
" curl http://localhost:8080/ping")
20print(
" curl http://localhost:8080/status")
24subprocess.run([runner_path, dll_path])