Compare commits

..

No commits in common. "7a6273c4a88769cd20a6ffaa7c1e6a2c1a1b6499" and "bd66d2f50385c80e4c6a8f0bf6777a8232c1e1e1" have entirely different histories.

View file

@ -83,6 +83,10 @@ uv run pytest
## Celery
```bash
```
Start a worker:
```bash
@ -124,10 +128,12 @@ uv run python manage.py backup_db --output-dir "<path>" --prefix "ttvdrops"
```bash
sudo chown -R ttvdrops:http /home/ttvdrops/.local/share/TTVDrops/media/
sudo chgrp -R http /home/ttvdrops/.local/share/TTVDrops/media
sudo find /home/ttvdrops/.local/share/TTVDrops/media -type d -exec chmod 2775 {} \;
sudo find /home/ttvdrops/.local/share/TTVDrops/media -type f -exec chmod 664 {} \;
sudo chown -R ttvdrops:http /home/ttvdrops/.local/share/TTVDrops/datasets/
sudo chgrp -R http /home/ttvdrops/.local/share/TTVDrops/datasets/
sudo find /home/ttvdrops/.local/share/TTVDrops/datasets -type d -exec chmod 2775 {} \;
sudo find /home/ttvdrops/.local/share/TTVDrops/datasets -type f -exec chmod 664 {} \;
```