This commit is contained in:
mco-system 2023-04-06 22:41:56 +11:00
parent 40d372c22b
commit ab5c6cf3fb
1 changed files with 4 additions and 4 deletions

View File

@ -6,9 +6,9 @@ install:
echo [+] Déploiement dans $$THSF_DIR; \ echo [+] Déploiement dans $$THSF_DIR; \
python3 -m venv thsf_venv; \ python3 -m venv thsf_venv; \
. thsf_venv/bin/activate; \ . thsf_venv/bin/activate; \
pip install -r requirements.txt ;\ pip3 install -r requirements.txt ;\
pip install . ;\ pip3 install . ;\
pip install gunicorn; \ pip3 install gunicorn; \
run: run:
set -e ;\ set -e ;\
@ -31,6 +31,6 @@ clean:
rm -Rf ./build ;\ rm -Rf ./build ;\
rm -Rf ./src/thsf.egg-info; \ rm -Rf ./src/thsf.egg-info; \
. thsf_venv/bin/activate; \ . thsf_venv/bin/activate; \
pip uninstall thsf -y pip3 uninstall thsf -y
all: stop clean install run all: stop clean install run