FitTrackee/Makefile

34 lines
563 B
Makefile
Raw Normal View History

2017-12-25 21:17:47 +01:00
include Makefile.config
-include Makefile.custom.config
.SILENT:
make-p:
# Launch all P targets in parallel and exit as soon as one exits.
set -m; (for p in $(P); do ($(MAKE) $$p || kill 0)& done; wait)
init-db:
$(FLASK) init_db
install: install-client install-python
install-client:
$(NPM) install
install-python:
$(PIP) install -r $(REQUIREMENTS)
2017-12-25 21:17:47 +01:00
serve-python:
$(FLASK) run --with-threads -h $(HOST) -p $(API_PORT)
serve-react:
$(NPM) start
serve:
$(MAKE) P="serve-react serve-python" make-p
2018-01-01 11:10:39 +01:00
test-e2e:
$(NPM) test
2018-01-01 11:10:39 +01:00
test-python:
$(FLASK) test