15 lines
181 B
Makefile
15 lines
181 B
Makefile
|
# Recipes
|
||
|
@default:
|
||
|
just --list
|
||
|
|
||
|
start:
|
||
|
granian --interface asgi main:app --reload
|
||
|
|
||
|
format:
|
||
|
ruff format
|
||
|
ruff check --fix
|
||
|
|
||
|
lint:
|
||
|
ruff format --check
|
||
|
ruff check
|