diff --git a/docs/features/CHANGELOG.md b/docs/features/CHANGELOG.md index c6fbf092e1..80ec5cf3a2 100644 --- a/docs/features/CHANGELOG.md +++ b/docs/features/CHANGELOG.md @@ -4,7 +4,7 @@ title: Changelog # :octicons-log-16: Changelog -## v1.13 (in process) +## v1.13 - Supports a Google Colab notebook for a standalone server running on Google hardware [Arturo Mendivil](https://github.com/artmen1516) diff --git a/docs/features/WEB.md b/docs/features/WEB.md index 9bc0d38e88..79f66314fa 100644 --- a/docs/features/WEB.md +++ b/docs/features/WEB.md @@ -1,21 +1,29 @@ --- -title: Barebones Web Server +title: InvokeAI Web Server --- -# :material-web: Barebones Web Server - -As of version 1.10, this distribution comes with a bare bones web server (see -screenshot). To use it, run the `invoke.py` script by adding the `--web` -option. +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 +adding the `--web` option: ```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 -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 -code, and to [dagf2101](https://github.com/dagf2101) for refining it. +```bash +(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)