Back to project.

Raw source file available here .

BIN = ./.venv/bin/
PYTHON = ./.venv/bin/python
PIP = ./.venv/bin/pip
APP_NAME=metriki

all: install build

ensure_repo:
-@git init

ensure_env: ensure_repo
-@python3 -m venv .venv

install: ensure_env
$(PIP) install -e .

format:
$(PIP) install shed
. $(BIN)/activate && shed

build:
$(MAKE) format
$(PIP) install build
$(PYTHON) -m build

run:
$(BIN)$(APP_NAME).serve --port=4000