2024-02-21 16:50:15 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
2024-04-30 14:12:49 +02:00
|
|
|
# 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
|
|
|
|
#=================================================
|