12 lines
316 B
Makefile
12 lines
316 B
Makefile
VENV=source ./.venv/bin/activate;
|
|
.PHONY: run run_full run_stocks run_orgs run_contractors
|
|
run:
|
|
$(VENV) python run.py
|
|
run_full:
|
|
$(VENV) python run.py --mode full
|
|
run_stocks:
|
|
$(VENV) python run.py --mode stocks
|
|
run_orgs:
|
|
$(VENV) python run.py --mode orgs
|
|
run_contractors:
|
|
$(VENV) python run.py --mode contractors
|