Moves all cards from "doing" and "done" lists back to "todo" every day at 4:00 AM. Targets boards named "tasks" under organizations with "family" in the name.
uv sync
uv run python trello_main.py # one-shot run
uv run python trello_service.py # scheduler (triggers at 4:00 AM)
uv run python trello_service.py --now # scheduler, run immediatelyEnvironment variables are loaded from .env:
TRELLO_API_KEY=...
TRELLO_API_SECRET=...
kubectl create secret generic trello-move-secret \
--from-literal=TRELLO_API_KEY=your_key \
--from-literal=TRELLO_API_SECRET=your_secretdocker build -t server01:5000/trello-move:latest .
docker push server01:5000/trello-move:latestkubectl apply -f k8s.ymldocker build -t server01:5000/trello-move:latest .
docker push server01:5000/trello-move:latest
kubectl rollout restart cronjob/trello-move