diff options
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -2,6 +2,7 @@ project := "umapyai" alias gen := generate alias fmt := format +alias alt := run_alternative generate target="client": rye run ariadne-codegen {{ target }} @@ -9,6 +10,9 @@ generate target="client": run *arguments: rye run {{ project }} {{ arguments }} +run_alternative *arguments: + rye run {{ project }}_alternative {{ arguments }} + scrape *arguments: rye run article_scraper {{ arguments }} |