Fix markdown typo in WEB.md

This commit is contained in:
Marco Labarile 2022-10-04 21:13:54 +02:00 committed by Lincoln Stein
parent aed5ad22fb
commit 0b8cdb6964
2 changed files with 19 additions and 11 deletions

View File

@ -4,7 +4,7 @@ title: Changelog
# :octicons-log-16: Changelog # :octicons-log-16: Changelog
## v1.13 <small>(in process)</small> ## v1.13
- Supports a Google Colab notebook for a standalone server running on Google - Supports a Google Colab notebook for a standalone server running on Google
hardware [Arturo Mendivil](https://github.com/artmen1516) hardware [Arturo Mendivil](https://github.com/artmen1516)

View File

@ -1,21 +1,29 @@
--- ---
title: Barebones Web Server title: InvokeAI Web Server
--- ---
# :material-web: Barebones Web Server As of version 2.0.0, this distribution comes with a full-featured web
server (see screenshot). To use it, run the `invoke.py` script by
As of version 1.10, this distribution comes with a bare bones web server (see adding the `--web` option:
screenshot). To use it, run the `invoke.py` script by adding the `--web`
option.
```bash ```bash
(ldm) ~/stable-diffusion$ python3 scripts/invoke.py --web (ldm) ~/InvokeAI$ python3 scripts/invoke.py --web
``` ```
You can then connect to the server by pointing your web browser at You can then connect to the server by pointing your web browser at
http://localhost:9090, or to the network name or IP address of the server. http://localhost:9090. To reach the server from a different machine on
your LAN, you may launch the web server with the `--host` argument and
either the IP address of the host you are running it on, or the
wildcard `0.0.0.0`. For example:
Kudos to [Tesseract Cat](https://github.com/TesseractCat) for contributing this ```bash
code, and to [dagf2101](https://github.com/dagf2101) for refining it. (ldm) ~/InvokeAI$ python3 scripts/invoke.py --web --host 0.0.0.0
```
Kudos to [Psychedelicious](https://github.com/psychedelicious),
[BlessedCoolant](https://github.com/blessedcoolant), [Tesseract
Cat](https://github.com/TesseractCat),
[dagf2101](https://github.com/dagf2101), and many others who
contributed to this code.
![Dream Web Server](../assets/invoke_web_server.png) ![Dream Web Server](../assets/invoke_web_server.png)