aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-07-27 21:00:08 +0200
committerFuwn <[email protected]>2025-07-27 21:00:08 +0200
commit6b49cba11ac0e56e8e5dfcc02d146b8f679a5dd5 (patch)
tree38577600fa7ec9242ade6607f58dedcbd1c51ae6 /justfile
parentrefactor: Move Ollama specific functions to module (diff)
downloadumapyai-6b49cba11ac0e56e8e5dfcc02d146b8f679a5dd5.tar.xz
umapyai-6b49cba11ac0e56e8e5dfcc02d146b8f679a5dd5.zip
feat: Add article scraper
Diffstat (limited to 'justfile')
-rw-r--r--justfile7
1 files changed, 5 insertions, 2 deletions
diff --git a/justfile b/justfile
index 30b7c49..b23d891 100644
--- a/justfile
+++ b/justfile
@@ -9,8 +9,11 @@ generate target="client":
run *arguments:
rye run {{ project }} {{ arguments }}
+scrape *arguments:
+ rye run article_scraper {{ arguments }}
+
format:
- rye run yapf src/{{ project }} --recursive --in-place --style yapf
+ rye run yapf src/* --recursive --in-place --style yapf
check:
- rye run ruff check src/{{ project }}
+ rye run ruff check src/*