Compare commits

..

2 commits

Author SHA1 Message Date
7a6273c4a8
Remove redundant group change commands
All checks were successful
Deploy to Server / deploy (push) Successful in 21s
2026-04-06 23:17:20 +02:00
2db9e513ff
Remove empty code block 2026-04-06 23:09:31 +02:00

View file

@ -83,10 +83,6 @@ uv run pytest
## Celery
```bash
```
Start a worker:
```bash
@ -128,12 +124,10 @@ 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 {} \;
```