14 lines
251 B
Makefile
14 lines
251 B
Makefile
.PHONY: setup run test build-mac-selfcontained
|
|
|
|
setup:
|
|
./web/run.sh --setup-only
|
|
|
|
run:
|
|
./web/run.sh
|
|
|
|
test: setup
|
|
. .venv/bin/activate && PYTHONPATH=web/src pytest -q web/src/tests
|
|
|
|
build-mac-selfcontained:
|
|
./scripts/build_selfcontained_mac_app.sh
|