From c09919b91a28956109f8446ea6c10062a1815c74 Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Wed, 17 Jul 2024 10:05:25 -0400 Subject: [PATCH] fix: Wording for app dir location to match code --- docs/install-create-run.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install-create-run.qmd b/docs/install-create-run.qmd index 0a5b421..e647fda 100644 --- a/docs/install-create-run.qmd +++ b/docs/install-create-run.qmd @@ -168,7 +168,7 @@ Next to the Run button is a dropdown menu that lets you "Debug Shiny App". This ### Command line -To run a Shiny app from the command line, use the `shiny run` command. This command takes a single argument, the path to the app's entry point. For example, if your app's entry point is `app.py` in the current directory, you can run it like this: +To run a Shiny app from the command line, use the `shiny run` command. This command takes a single argument, the path to the app's entry point. For example, if your app's entry point is `app.py` in the directory `./app_dir`, you can run it like this: ```bash shiny run --reload --launch-browser app_dir/app.py