aboutsummaryrefslogtreecommitdiff
path: root/justfile
blob: b23d891406f52293ea32b361f005797276e679e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
project := "umapyai"

alias gen := generate
alias fmt := format

generate target="client":
  rye run ariadne-codegen {{ target }}

run *arguments:
  rye run {{ project }} {{ arguments }}

scrape *arguments:
  rye run article_scraper {{ arguments }}

format:
  rye run yapf src/* --recursive --in-place --style yapf

check:
  rye run ruff check src/*