Get notified when a new drop is available on Twitch or Kick https://ttvdrops.lovinator.space/
  • Python 82.5%
  • HTML 17.1%
  • XSLT 0.4%
Find a file
Joakim Hellsén 7a6273c4a8
All checks were successful
Deploy to Server / deploy (push) Successful in 21s
Remove redundant group change commands
2026-04-06 23:17:20 +02:00
.github Fix conditional syntax for server health check in deploy workflow 2026-03-30 17:01:13 +02:00
.vscode Add initial chzzk app structure and configuration 2026-03-30 17:00:10 +02:00
chzzk Fix chzzk campaign feed filter being broken by new raw_json_v2 field 2026-04-05 05:16:59 +02:00
config Refactor URL handling to use BASE_URL across the application and add base_url context processor 2026-04-03 19:51:01 +02:00
core Enhance type hinting 2026-04-05 03:57:18 +02:00
kick Refactor URL handling to use BASE_URL across the application and add base_url context processor 2026-04-03 19:51:01 +02:00
static Update web app manifest; fix type errors 2026-03-19 19:39:27 +01:00
templates Refactor URL handling to use BASE_URL across the application and add base_url context processor 2026-04-03 19:51:01 +02:00
tools/systemd Add SupplementaryGroups and UMask settings to systemd service files 2026-03-16 23:14:36 +01:00
twitch Refactor URL handling to use BASE_URL across the application and add base_url context processor 2026-04-03 19:51:01 +02:00
youtube Refactor URL handling to use BASE_URL across the application and add base_url context processor 2026-04-03 19:51:01 +02:00
.env.example Add PostgreSQL configuration to .env.example 2026-03-23 20:54:42 +01:00
.git-blame-ignore-revs Add .git-blame-ignore-revs 2026-03-09 04:41:11 +01:00
.gitattributes Add .gitattributes to mark JSON files as linguist-generated 2026-03-31 21:56:39 +02:00
.gitignore Remove uv.lock 2026-02-07 13:58:03 +01:00
.pre-commit-config.yaml Update ruff-pre-commit version to v0.15.9 2026-04-03 19:26:55 +02:00
manage.py Lower line-length to default and don't add from __future__ import annotations to everything 2026-03-09 04:37:54 +01:00
pyproject.toml Include celery-types 2026-03-23 19:47:50 +01:00
README.md Remove redundant group change commands 2026-04-06 23:17:20 +02:00

ttvdrops

Get notified when a new drop is available on Twitch

TL;DR (Arch Linux + PostgreSQL)

Install and initialize Postgres, then start the service:

sudo pacman -S postgresql
sudo -u postgres initdb -D /var/lib/postgres/data
sudo systemctl enable --now postgresql

Create a local role and database:

sudo -u postgres createuser -P ttvdrops
sudo -u postgres createdb -O ttvdrops ttvdrops

Point Django at the unix socket used by Arch (/run/postgresql):

POSTGRES_USER=ttvdrops
POSTGRES_PASSWORD=your_password
POSTGRES_DB=ttvdrops
POSTGRES_HOST=/run/postgresql
POSTGRES_PORT=5432

Linux (Systemd)

sudo useradd --create-home --home-dir /home/ttvdrops --shell /bin/fish ttvdrops
sudo passwd ttvdrops
sudo usermod -aG wheel ttvdrops
su - ttvdrops
git clone https://git.lovinator.space/TheLovinator/ttvdrops.git
cd ttvdrops
uv sync --no-dev

# Modify .env with the correct database credentials and other settings, then run migrations:
uv run python manage.py migrate

Install the systemd service from the repo:

sudo install -m 0644 tools/systemd/ttvdrops.socket /etc/systemd/system/ttvdrops.socket
sudo install -m 0644 tools/systemd/ttvdrops.service /etc/systemd/system/ttvdrops.service

Enable and start the service:

sudo systemctl daemon-reload
sudo systemctl enable --now ttvdrops.socket
sudo systemctl enable --now ttvdrops.service

curl --unix-socket /run/ttvdrops/ttvdrops.sock https://ttvdrops.lovinator.space

Install and enable timers:

sudo install -m 0644 tools/systemd/ttvdrops-backup.{service,timer} /etc/systemd/system/
sudo install -m 0644 tools/systemd/ttvdrops-import-drops.{service,timer} /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable --now ttvdrops-backup.timer ttvdrops-import-drops.timer

Development

uv run python manage.py createsuperuser
uv run python manage.py makemigrations
uv run python manage.py migrate
uv run python manage.py collectstatic
uv run python manage.py runserver
uv run pytest

Celery

Start a worker:

uv run celery -A config worker --loglevel=info
uv run celery -A config beat --loglevel=info --scheduler django_celery_beat.schedulers:DatabaseScheduler

Import Drops

uv run python manage.py better_import_drops <file|dir> [--recursive] [--verbose] [--crash-on-error] [--skip-broken-moves]

Import Chat Badges

Import Twitch's global chat badges for archival and reference:

uv run python manage.py import_chat_badges

Requires TWITCH_CLIENT_ID and TWITCH_CLIENT_SECRET environment variables to be set.

Create DB Backup

Create a zstd-compressed SQL dump (only twitch_ tables) in the datasets directory:

uv run python manage.py backup_db

Optional arguments:

uv run python manage.py backup_db --output-dir "<path>" --prefix "ttvdrops"

How the duck does permissions work on Linux?

sudo chown -R ttvdrops: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 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 {} \;