Compare commits

..

No commits in common. "c8e2f1fa1ca923080d6496857e59e74831530b44" and "03458db82937a260406d503977a0a4ffd57e33bf" have entirely different histories.

3 changed files with 2 additions and 60 deletions

View file

@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier same "printed page" as the copyright notice for easier
identification within third-party archives. identification within third-party archives.
Copyright 2024 Andrey DarkCat09 Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.

View file

@ -5,61 +5,3 @@ converts to MP3, adds ID3 tags, searches for lyrics on Genius and writes to ID3.
Written in Python, because creating an interpreter process Written in Python, because creating an interpreter process
on each yt-dlp invoke is unreasonable. on each yt-dlp invoke is unreasonable.
# Example configs
`/home/mdlp/src` contains cloned git repo, `/home/mdlp/venv` is a python venv.
## nginx
```
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name mdlp.domain.tld;
root /home/mdlp/src/frontend;
# https://ssl-config.mozilla.org/#server=nginx&version=1.26.0&config=modern&openssl=1.1.1k&guideline=5.7
#ssl_certificate /etc/letsencrypt/live/domain.tld/fullchain.pem
#ssl_certificate_key /etc/letsencrypt/live/domain.tld/privkey.pem
#ssl_trusted_certificate /etc/letsencrypt/live/domain.tld/chain.pem
#...
location /ws {
proxy_pass http://127.0.0.1:4009;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
}
```
## openrc
```
#!/sbin/openrc-run
export HOST=127.0.0.1
export PORT=4009
export YT_PROXY="http://user:pass@host:port"
name=$RC_SVCNAME
command="/home/mdlp/venv/bin/python3"
command_args="/home/mdlp/src/backend/main.py"
command_user="mdlp"
directory="/home/mdlp"
error_log="/var/log/$RC_SVCNAME/error.log"
pidfile="/run/$RC_SVCNAME/$RC_SVCNAME.pid"
command_background="yes"
depend() {
need net
}
start_pre() {
checkpath --directory --owner $command_user:$command_user --mode 0775 \
/run/$RC_SVCNAME /var/log/$RC_SVCNAME
}
```

View file

@ -16,7 +16,7 @@ addEventListener('DOMContentLoaded', () => {
} }
}) })
const socket = new WebSocket('/ws') const socket = new WebSocket('ws://127.0.0.1:4009')
const itemsDiv = document.getElementById('items-container') const itemsDiv = document.getElementById('items-container')
let items = [] let items = []