1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/django-fmd_ynh.git synced 2024-09-03 18:26:27 +02:00
django-fmd_ynh/scripts/_common.sh

30 lines
980 B
Bash
Raw Normal View History

2022-07-11 20:34:24 +02:00
#!/bin/bash
#=================================================
2024-01-18 21:02:26 +01:00
# COMMON VARIABLES
2022-07-11 20:34:24 +02:00
#=================================================
#=================================================
2024-01-18 21:02:26 +01:00
# PERSONAL HELPERS
#=================================================
2024-01-18 21:02:26 +01:00
_install_fmd_venv() {
ynh_exec_as "$app" python3 -m venv --upgrade "$install_dir/venv"
2024-01-18 21:02:26 +01:00
venvpython="$install_dir/venv/bin/python3"
2024-01-18 21:02:26 +01:00
ynh_add_config --template="requirements.txt" --destination="$install_dir/requirements.txt"
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
ynh_exec_as "$app" "$venvpython" -m ensurepip
ynh_exec_as "$app" "$venvpython" -m pip install --upgrade wheel pip setuptools
ynh_exec_as "$app" "$venvpython" -m pip install --no-deps -r "$install_dir/requirements.txt"
}
2022-07-11 20:34:24 +02:00
#=================================================
2024-01-18 21:02:26 +01:00
# EXPERIMENTAL HELPERS
2022-07-11 20:34:24 +02:00
#=================================================
#=================================================
2024-01-18 21:02:26 +01:00
# FUTURE OFFICIAL HELPERS
2022-07-11 20:34:24 +02:00
#=================================================