blob: 70a091b6e000e2d5f899db4312a1312a0a61e609 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
project := "umapyai"
alias gen := generate
alias fmt := format
alias alt := run_alternative
generate target="client":
rye run ariadne-codegen {{ target }}
run *arguments:
rye run {{ project }} {{ arguments }}
run_alternative *arguments:
rye run {{ project }}_alternative {{ arguments }}
scrape *arguments:
rye run article_scraper {{ arguments }}
format:
rye run yapf src/* --recursive --in-place --style yapf
check:
rye run ruff check src/*
|