1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/isso_ynh.git synced 2024-09-03 19:35:55 +02:00
This commit is contained in:
navanchauhan 2022-08-07 23:44:02 -04:00
parent 6b4de8b2e3
commit b6a731fd15
2 changed files with 4 additions and 1 deletions

View file

@ -5,7 +5,7 @@
#=================================================
# dependencies used by the app (must be on a single line)
pkg_dependencies="git curl python3 python3-pip python3-venv libpq-dev libsasl2-dev python3-dev libssl-dev"
pkg_dependencies="git curl python3 python3-pip python3-venv libpq-dev libsasl2-dev python3-dev libssl-dev libffi-dev python3-cffi"
#=================================================
# PERSONAL HELPERS

View file

@ -110,6 +110,9 @@ ynh_add_nginx_config
pushd $final_path
ynh_exec_as $app python3 -m venv $final_path/venv
ynh_exec_as $app "$final_path/venv/bin/pip" install --upgrade pip
ynh_exec_as $app "$final_path/venv/bin/pip" install --upgrade setuptools
ynh_exec_as $app "$final_path/venv/bin/pip" install --upgrade MarkupSafe
ynh_exec_as $app "$final_path/venv/bin/pip" install isso gunicorn
popd