1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-11 16:01:20 +00:00
bramw_baserow/backend/Makefile
2019-09-23 09:59:42 +00:00

10 lines
241 B
Makefile

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