mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
98fe044dee
- rename dream.py to invoke.py - create a compatibility script named dream.py that execs() invoke.py - redo documentation - change help message in args - this does **not** rename the libraries, which are still ldm.dream.util, etc
22 lines
654 B
Markdown
22 lines
654 B
Markdown
---
|
|
title: Barebones 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.
|
|
|
|
```bash
|
|
(ldm) ~/stable-diffusion$ 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.
|
|
|
|
Kudos to [Tesseract Cat](https://github.com/TesseractCat) for contributing this
|
|
code, and to [dagf2101](https://github.com/dagf2101) for refining it.
|
|
|
|
![Dream Web Server](../assets/invoke_web_server.png)
|