mirror of
https://github.com/YunoHost-Apps/tooljet_ynh.git
synced 2024-10-01 13:34:55 +02:00
wip
This commit is contained in:
parent
e442fbbe8f
commit
c4c1720adf
1 changed files with 3 additions and 2 deletions
|
@ -127,9 +127,10 @@ ynh_script_progression --message="Building ToolJet..." --time --weight=1
|
||||||
|
|
||||||
pushd $final_path
|
pushd $final_path
|
||||||
ynh_use_nodejs
|
ynh_use_nodejs
|
||||||
|
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install npm@7.20.0
|
||||||
|
|
||||||
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install -f
|
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install -f
|
||||||
# Needed ?
|
|
||||||
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --prefix plugins -f
|
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --prefix plugins -f
|
||||||
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --prefix server -f
|
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --prefix server -f
|
||||||
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --prefix frontend -f
|
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --prefix frontend -f
|
||||||
|
@ -145,7 +146,7 @@ popd
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Adding a configuration file..." --time --weight=1
|
ynh_script_progression --message="Adding a configuration file..." --time --weight=1
|
||||||
|
|
||||||
# package_linter don't like `openssl rand -hex`...
|
# package_linter don't like `openssl` rand :(
|
||||||
# Use ynh_string_random and some magic stuff to get a 32 bytes hex-only string
|
# Use ynh_string_random and some magic stuff to get a 32 bytes hex-only string
|
||||||
lockbox_master_key=$(ynh_string_random --length=32 | xxd -p | head -n1 | cut -c 1-32)
|
lockbox_master_key=$(ynh_string_random --length=32 | xxd -p | head -n1 | cut -c 1-32)
|
||||||
ynh_app_setting_set --app="$app" --key=lockbox_master_key --value="$lockbox_master_key"
|
ynh_app_setting_set --app="$app" --key=lockbox_master_key --value="$lockbox_master_key"
|
||||||
|
|
Loading…
Reference in a new issue