File size: 302 Bytes
f270be8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # https://taskfile.dev
version: '3'
vars:
GREETING: Hello, World!
tasks:
download_words_variations:
cmds:
- uv run python reshare_odmiany.py
download_game_words:
cmds:
- uv run python reshare_wordgames.py
default:
cmds:
- uv run python main.py
silent: true
|