2021-03-16 23:36:39 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-04-18 03:40:36 +02:00
|
|
|
function build_nitter {
|
2023-06-03 19:23:20 +02:00
|
|
|
pushd "$install_dir"
|
|
|
|
chown -R $app:$app $install_dir
|
|
|
|
sudo -u $app env "PATH=$install_dir/nim-installation/bin:$(sudo -u $app sh -c 'echo $PATH')" nimble build -d:release -y -d:danger --passC:"-flto" --passL:"-flto" 2>&1
|
|
|
|
sudo -u $app env "PATH=$install_dir/nim-installation/bin:$(sudo -u $app sh -c 'echo $PATH')" strip -s nitter 2>&1
|
|
|
|
sudo -u $app env "PATH=$install_dir/nim-installation/bin:$(sudo -u $app sh -c 'echo $PATH')" nimble scss -y 2>&1
|
|
|
|
mkdir -p $install_dir/tmp
|
|
|
|
chown -R root:root $install_dir
|
2022-06-19 13:32:12 +02:00
|
|
|
popd
|
2021-04-18 03:40:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function set_permissions {
|
2023-06-03 19:23:20 +02:00
|
|
|
chown -R root:$app $install_dir
|
|
|
|
chown -R $app:$app $install_dir/tmp
|
|
|
|
chmod -R g=u,g-w,o-rwx $install_dir
|
|
|
|
setfacl -n -m u:www-data:--x $install_dir
|
|
|
|
setfacl -nR -m u:www-data:r-x -m d:u:www-data:r-x $install_dir/public
|
2021-04-18 03:40:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-03-16 23:36:39 +01:00
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|