mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-08 21:34:25 +00:00
8 lines
261 B
Makefile
8 lines
261 B
Makefile
create-venv: override python_version ?= 3.12
|
|
create-venv:
|
|
python${python_version} -m 'venv' '.venv'
|
|
source '.venv/bin/activate' && pip install -r 'requirements.txt'
|
|
|
|
setup-for-hooks:
|
|
npm install --save-dev '@commitlint/cli' '@commitlint/config-conventional'
|