1
Fork 0
lwn-feed-proxy/justfile

15 lines
181 B
Makefile
Raw Normal View History

2024-10-22 21:49:40 +01:00
# Recipes
@default:
just --list
start:
granian --interface asgi main:app --reload
format:
ruff format
ruff check --fix
lint:
ruff format --check
ruff check