File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed
Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -41,3 +41,18 @@ shiny create -d basic_app_core -t basic-app -m core
4141gunicorn basic_app_core.app:app -w 4 -k uvicorn.workers.UvicornWorker
4242```
4343
44+ ## Examples
45+
46+ * [ basic_app] ( basic_app )
47+ * [ basic_app_core] ( basic_app_core )
48+ * [ routes_example_app] ( routes_example_app )
49+ * [ shinylive_quarto] ( shinylive_quarto )
50+ * [ shinylive_without_quarto] ( shinylive_without_quarto )
51+
52+ ## Docker
53+
54+ ``` bash
55+ docker pull ghcr.io/eoda-dev/shinylive-nginx:latest
56+
57+ docker run --rm -p 8085:80 ghcr.io/eoda-dev/shinylive-nginx:latest
58+ ```
Original file line number Diff line number Diff line change @@ -6,3 +6,4 @@ docker build -t shiny-for-py/basic-app-core:1.0.0 .
66docker run -p 3333:3333 --rm -d shiny-for-py/basic-app-core:1.0.0
77```
88
9+ Navigate to [ http://localhost:3333 ] ( http://localhost:3333 ) .
Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ quarto render index.qmd
1111python -m http.server
1212```
1313
14- Then navigate to [ localhost:8000] ( http://localhost:8000 )
14+ Navigate to [ http:// localhost:8000] ( http://localhost:8000 ) .
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Start local webserver to server the app:
2222python3 -m http.server --directory site --bind localhost 8008
2323```
2424
25- Navigate to [ http://localhost:8008 ] ( http://localhost:8008 )
25+ Navigate to [ http://localhost:8008 ] ( http://localhost:8008 ) .
2626
2727Build Docker image to server site with Nginx:
2828
@@ -32,4 +32,4 @@ docker build -t shiny-for-py/shinylive-app-nginx:1.0.0 .
3232docker run -p 8085:80 --rm shiny-for-py/shinylive-app-nginx:1.0.0
3333```
3434
35- Navigate to [ http://localhost:8085/shinylive-app/ ] ( http://localhost:8085/shinylive-app/ )
35+ Navigate to [ http://localhost:8085/shinylive-app/ ] ( http://localhost:8085/shinylive-app/ ) .
You can’t perform that action at this time.
0 commit comments