Skip to content

Commit 383733e

Browse files
authored
Merge pull request #221 from rstudio/toph-add-quarto-appmodes
Support deploying manifests with Quarto app modes.
2 parents 4c126fb + 8cacc6e commit 383733e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ Options:
616616
-c, --cacert FILENAME The path to trusted TLS CA certificates.
617617
--published Search only published content.
618618
--unpublished Search only unpublished content.
619-
--content-type [unknown|shiny|rmd-static|rmd-shiny|static|api|tensorflow-saved-model|jupyter-static|python-api|python-dash|python-streamlit|python-bokeh|python-fastapi]
619+
--content-type [unknown|shiny|rmd-static|rmd-shiny|static|api|tensorflow-saved-model|jupyter-static|python-api|python-dash|python-streamlit|python-bokeh|python-fastapi|quarto-shiny|quarto-static]
620620
Filter content results by content type.
621621
--r-version VERSIONSEARCHFILTER
622622
Filter content results by R version.

rsconnect/models.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ class AppModes(object):
8181
STREAMLIT_APP = AppMode(10, "python-streamlit", "Streamlit Application")
8282
BOKEH_APP = AppMode(11, "python-bokeh", "Bokeh Application")
8383
PYTHON_FASTAPI = AppMode(12, "python-fastapi", "Python FastAPI")
84+
SHINY_QUARTO = AppMode(13, "quarto-shiny", "Shiny Quarto Document")
85+
STATIC_QUARTO = AppMode(14, "quarto-static", "Quarto Document", ".qmd")
8486

8587
_modes = [
8688
UNKNOWN,
@@ -96,6 +98,8 @@ class AppModes(object):
9698
STREAMLIT_APP,
9799
BOKEH_APP,
98100
PYTHON_FASTAPI,
101+
SHINY_QUARTO,
102+
STATIC_QUARTO,
99103
]
100104

101105
@classmethod

0 commit comments

Comments
 (0)