20 lines
450 B
Makefile
20 lines
450 B
Makefile
run-controller:
|
|
venv/bin/mypy --strict phasmplatform
|
|
venv/bin/pyflakes phasmplatform
|
|
venv/bin/pycodestyle phasmplatform
|
|
# venv/bin/python
|
|
|
|
init:
|
|
docker compose up -d
|
|
|
|
redis-sh:
|
|
docker compose exec -it redis redis-cli
|
|
|
|
setup:
|
|
python3.10 -m venv venv
|
|
venv/bin/pip install --upgrade pip wheel setuptools
|
|
venv/bin/pip install -r requirements.txt -r requirements-dev.txt
|
|
|
|
update:
|
|
venv/bin/pip install -r requirements.txt -r requirements-dev.txt
|