9 lines
120 B
Makefile
Executable file
9 lines
120 B
Makefile
Executable file
init:
|
|
pip install -r requirements.txt
|
|
lint:
|
|
python -m flake8 .
|
|
format:
|
|
black .
|
|
make lint
|
|
serve:
|
|
python craft serve
|