We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The deploy command understands Shiny express applications, but not the write-manifest command.
See: #521
from shiny import reactive from shiny.express import input, render, ui from shinywidgets import render_plotly ui.page_opts(title="Penguins dashboard", fillable=True) with ui.sidebar(): ui.input_selectize( "var", "Select variable", ["bill_length_mm", "bill_depth_mm", "flipper_length_mm", "body_mass_g", "year"] ) ui.input_numeric("bins", "Number of bins", 30) @reactive.calc def df(): from palmerpenguins import load_penguins return load_penguins()[input.var()] with ui.card(full_screen=True): @render_plotly def hist(): import plotly.express as px p = px.histogram(df(), nbins=input.bins()) p.layout.update(showlegend=False) return p
shiny==0.7.0 shinywidgets==0.3.0
The rsconnect-python 1.22.0 release creates a manifest with an entrypoint of app.
app
The text was updated successfully, but these errors were encountered:
The entrypoint in the manifest should be something like: shiny.express.app:app_2e_py
shiny.express.app:app_2e_py
Sorry, something went wrong.
This has been fixed by #558.
No branches or pull requests
The deploy command understands Shiny express applications, but not the write-manifest command.
See: #521
The rsconnect-python 1.22.0 release creates a manifest with an entrypoint of
app
.The text was updated successfully, but these errors were encountered: