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

alias gen := generate
alias fmt := format

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

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

format:
  rye run yapf src/{{ project }} --recursive --in-place --style yapf

check:
  rye run ruff check src/{{ project }}