File size: 325 Bytes
1d06677
c64cd4d
 
 
 
 
 
 
 
 
 
 
 
1d06677
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.PHONY: style format start clean


style:
	python -m black --line-length 119 .
	python -m isort .
	ruff check --fix .


quality:
	python -m black --check --line-length 119 .
	python -m isort --check-only .
	ruff check .

start:
	gradio app.py

clean:
	ps aux | grep "app" | grep -v "grep" | awk '{print $$2}' | xargs kill -9