Files
ragnar/Makefile
T
retoor 06c2f8ffd0
Build Ragnar anti spam bot / Build (push) Successful in 1m8s
Added Buffon blocker.
2024-12-09 21:48:50 +01:00

24 lines
396 B
Makefile

ENV=./.venv/bin/activate
all: ensure_env format build install test
format:
./.venv/bin/python -m pip install shed
. $(ENV) && python -m shed
ensure_env:
-@python3 -m venv .venv
build:
./.venv/bin/python -m pip install build
./.venv/bin/python -m build .
install:
./.venv/bin/python -m pip install -e .
run:
python -m ragnar.run
test:
./.venv/bin/python -m unittest ragnar.tests