Skip to content

Commit c4afb19

Browse files
committed
Update README
1 parent a163c16 commit c4afb19

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,18 @@ shiny create -d basic_app_core -t basic-app -m core
4141
gunicorn 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+
```

basic_app_core/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ docker build -t shiny-for-py/basic-app-core:1.0.0 .
66
docker 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).

shinylive_quarto/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ quarto render index.qmd
1111
python -m http.server
1212
```
1313

14-
Then navigate to [localhost:8000](http://localhost:8000)
14+
Navigate to [http://localhost:8000](http://localhost:8000).

shinylive_without_quarto/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Start local webserver to server the app:
2222
python3 -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

2727
Build Docker image to server site with Nginx:
2828

@@ -32,4 +32,4 @@ docker build -t shiny-for-py/shinylive-app-nginx:1.0.0 .
3232
docker 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/).

0 commit comments

Comments
 (0)