(context: Context)
| 175 | |
| 176 | |
| 177 | def _docker_docs(context: Context) -> None: |
| 178 | context.run("docker build . --file ./docs/Dockerfile --tag reactpy-docs:latest") |
| 179 | context.run( |
| 180 | "docker run -it -p 5000:5000 -e DEBUG=1 --rm reactpy-docs:latest", pty=True |
| 181 | ) |
| 182 | |
| 183 | |
| 184 | def _live_docs(context: Context) -> None: |