cole / Makefile
COLE CI
deploy to HF Space
f026a8e
Raw
History Blame Contribute Delete
250 Bytes
.PHONY: lint format test build docker all
lint:
pylint cole/ tests/
cd frontend && npm run lint
format:
black --check .
test:
pytest
build:
cd frontend && npm ci && npm run build
docker:
docker build -t cole .
all: format lint test build