1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-01-30 18:36:29 +00:00
bramw_baserow/backend/Makefile
2020-11-05 18:24:25 +00:00

12 lines
266 B
Makefile

install-dependencies:
apt-get update && apt-get install -y libpq-dev postgresql postgresql-contrib
pip install -r requirements/base.txt
install-dev-dependencies:
pip install -r requirements/dev.txt
lint:
flake8 src tests || exit;
test:
pytest tests || exit;