Add script and configure environment to install python dependencies into a project subfolder

This commit is contained in:
W13R 2022-03-16 18:58:27 +01:00
parent c6315a01f0
commit fb50140762
6 changed files with 12 additions and 3 deletions

View file

@ -75,7 +75,7 @@ try:
)
app_process = Popen(
[
"uvicorn",
"python3", "-m", "uvicorn",
"--host", "localhost",
"--port", quote(DJANGO_PORT),
"drinks_manager.asgi:application"

View file

@ -3,3 +3,4 @@
export DJANGO_SK_ABS_FP="$(pwd)/config/secret_key.txt"
export STATIC_FILES="$(pwd)/static/"
export APP_VERSION="2.6"
export PYTHONPATH="$(pwd)/packages/"