upd readme

This commit is contained in:
ge 2023-02-19 01:48:20 +03:00
parent e80a3b1916
commit 7d89092b6f

View File

@ -4,13 +4,14 @@
This is a shitty Web UI for [ydl_api_ng](https://github.com/Totonyus/ydl_api_ng) — API around [yt-dlp](https://github.com/yt-dlp/yt-dlp). This is a shitty Web UI for [ydl_api_ng](https://github.com/Totonyus/ydl_api_ng) — API around [yt-dlp](https://github.com/yt-dlp/yt-dlp).
This UI is written for my personal use and may not have the features you would like to see. I want to gradually expand its capabilities, if there is time for this.
![](images/1.png) ![](images/1.png)
![](images/2.png) ![](images/2.png)
This UI is written for my personal use and may not have the features you would like to see. I want to gradually expand its capabilities, if there is time for this.
# Roadmap # Roadmap
- [] Add Dockerfile and docker-compose.yml
- [] Handle non-youtube links - [] Handle non-youtube links
- [] Handle unsupported URLs - [] Handle unsupported URLs
- [] Advanced settings - [] Advanced settings
@ -55,6 +56,12 @@ pip install -r requirements.txt
pip install black pylint pip install black pylint
``` ```
Set `YDL_API_HOST` environment variable. Put your ydl_api_ng instance URL:
```
export YDL_API_HOST=http://127.0.0.1:5011
```
Run Bottle development server (starts `router.py` with DEBUG): Run Bottle development server (starts `router.py` with DEBUG):
``` ```