Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,38 @@ Delete your current ESET HOME account
5. [Updater](wiki/Updater.md)
6. [Installer](wiki/Installer.md)
7. [MBCI (Menu-based Сonsole Interface)](wiki/MBCI-Inferface.md)
8. [Web UI (FastAPI based)](wiki/WebUI.md)

---

## 5. Web UI Usage
You can now use a web interface to generate ESET keys and accounts.

### Prerequisites
Make sure you have installed the required dependencies:
```bash
pip install -r requirements.txt
```

### Running the Web Server
Execute the following command to start the web server:
```bash
python web.py
```
Or if you are using `uvicorn` directly:
```bash
uvicorn web:app --host 0.0.0.0 --port 8000
```

### Accessing the UI
Open your browser and navigate to:
`http://localhost:8000`

The Web UI allows you to:
- Select generation modes and email APIs via dropdowns.
- View real-time execution logs through WebSockets.
- Access a history of all generated accounts and keys stored in a local SQLite database.
- Automatically save and load your last-used configuration.
---

# Additional information
Expand Down
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
selenium
requests
colorama
fastapi
uvicorn
websockets
Loading