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
It would be nice if shiny run would expose a cli option to bind to unix domain sockets instead of tcp ports. uvicorn already supports this via the --uds flag.
This already works in python (as run_app() passes **kwargs on to uvicorn.run()):
from shiny import run_app
run_app("app:app", uds="/tmp/shiny.sock")
But in the shiny run cli, additional arguments are not allowed.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
It would be nice if
shiny run
would expose a cli option to bind to unix domain sockets instead of tcp ports.uvicorn
already supports this via the--uds
flag.This already works in python (as
run_app()
passes**kwargs
on touvicorn.run()
):But in the
shiny run
cli, additional arguments are not allowed.The text was updated successfully, but these errors were encountered: