We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3e0187 commit eb952f6Copy full SHA for eb952f6
Makefile
@@ -1,7 +1,7 @@
1
SERVICES_DIR := services
2
3
install:
4
- @for f in $(shell ls ${SERVICES_DIR}); do poetry install -C ${SERVICES_DIR}/$${f}; done
+ @for f in $(shell ls ${SERVICES_DIR}); do pip install ${SERVICES_DIR}/$${f}; done
5
6
install-dev:
7
@for f in $(shell ls ${SERVICES_DIR}); do pip install -e ${SERVICES_DIR}/$${f};poetry install -C ${SERVICES_DIR}/$${f} --only dev --no-root; done
0 commit comments