mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
634486107b
Signed-off-by: phernandez <paul@basicmachines.co> Co-authored-by: Claude <noreply@anthropic.com>
59 lines
1.2 KiB
Makefile
59 lines
1.2 KiB
Makefile
.PHONY: install test test-module lint clean format type-check installer-mac installer-win check test-int
|
|
|
|
install:
|
|
pip install -e ".[dev]"
|
|
|
|
test-unit:
|
|
uv run pytest -p pytest_mock -v
|
|
|
|
test-int:
|
|
uv run pytest -p pytest_mock -v --no-cov test-int
|
|
|
|
test: test-unit test-int
|
|
|
|
lint:
|
|
ruff check . --fix
|
|
|
|
type-check:
|
|
uv run pyright
|
|
|
|
clean:
|
|
find . -type f -name '*.pyc' -delete
|
|
find . -type d -name '__pycache__' -exec rm -r {} +
|
|
rm -rf installer/build/
|
|
rm -rf installer/dist/
|
|
rm -f rw.*.dmg
|
|
rm -rf dist
|
|
rm -rf installer/build
|
|
rm -rf installer/dist
|
|
rm -f .coverage.*
|
|
|
|
format:
|
|
uv run ruff format .
|
|
|
|
# run inspector tool
|
|
run-inspector:
|
|
npx @modelcontextprotocol/inspector
|
|
|
|
# Build app installer
|
|
installer-mac:
|
|
cd installer && chmod +x make_icons.sh && ./make_icons.sh
|
|
cd installer && uv run python setup.py bdist_mac
|
|
|
|
installer-win:
|
|
cd installer && uv run python setup.py bdist_win32
|
|
|
|
|
|
update-deps:
|
|
uv lock --upgrade
|
|
|
|
check: lint format type-check test
|
|
|
|
|
|
# Target for generating Alembic migrations with a message from command line
|
|
migration:
|
|
@if [ -z "$(m)" ]; then \
|
|
echo "Usage: make migration m=\"Your migration message\""; \
|
|
exit 1; \
|
|
fi; \
|
|
cd src/basic_memory/alembic && alembic revision --autogenerate -m "$(m)"
|