launch browser
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
Scott E. Graves 2025-03-03 09:37:37 -06:00
parent c5246048bf
commit 06ad2a62cb

View File

@ -110,8 +110,9 @@ handlers::handlers(mgmt_app_config *config, httplib::Server *server)
std::signal(SIGTERM, quit_handler);
#if defined(_WIN32)
system(
fmt::format(R"(start "http://127.0.0.1:{}/ui")", config_->get_api_port())
system(fmt::format(
R"(start "Repertory Management Portal" "http://127.0.0.1:{}/ui")",
config_->get_api_port())
.c_str());
#elif defined(__linux__)
system(fmt::format(R"(xdg-open "http://127.0.0.1:{}/ui")",