1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flohmarkt_ynh.git synced 2024-09-03 18:36:30 +02:00
flohmarkt_ynh/scripts/_common.sh

25 lines
827 B
Bash
Raw Normal View History

2024-02-21 16:50:15 +01:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
# replace '/' by nothing for the path
if [ "$path" == '/' ]; then url_path=''; else url_path=$path; fi
# directory flohmarkts software is installed to
flohmarkt_install="/opt/${id}/${domain}${url_path}/src"
# diretory the venv for flohmarkt is installed to
flohmarkt_venv_dir="/opt/${id}/${domain}${url_path}/venv"
2024-02-21 16:50:15 +01:00
#=================================================
# PERSONAL HELPERS
#=================================================
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================