Files
basicmachines-co-basic-memory/Makefile
T
2024-12-05 20:54:12 -06:00

25 lines
272 B
Makefile

.PHONY: install test lint db-new db-up db-down db-reset
install:
brew install dbmate
pip install -e ".[dev]"
test:
pytest -p pytest_mock -v
lint:
black .
ruff check .
db-new:
dbmate new
db-up:
dbmate up
db-down:
dbmate down
db-reset:
dbmate drop
dbmate up