1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pytition_ynh.git synced 2024-09-03 20:16:08 +02:00
pytition_ynh/scripts/_common.sh
Éric Gaspar d709726a3c v2
2023-07-28 16:17:37 +02:00

26 lines
762 B
Bash

#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
#=================================================
# PERSONAL HELPERS
#=================================================
generate_secret_key() {
(
set +o nounset
source "${install_dir}/venv/bin/activate"
set -o nounset
python3 -c "from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())"
)
}
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================