70 lines
1.9 KiB
Bash
70 lines
1.9 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: nnsense
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/kieraneglin/pinchflat
|
|
|
|
APP="Pinchflat"
|
|
var_tags="${var_tags:-media;youtube;downloader}"
|
|
var_cpu="${var_cpu:-2}"
|
|
var_ram="${var_ram:-2048}"
|
|
var_disk="${var_disk:-8}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
var_unprivileged="${var_unprivileged:-1}"
|
|
var_gpu="${var_gpu:-yes}"
|
|
|
|
header_info "$APP"
|
|
variables
|
|
color
|
|
catch_errors
|
|
|
|
function update_script() {
|
|
header_info
|
|
check_container_storage
|
|
check_container_resources
|
|
|
|
if [[ ! -d /opt/pinchflat/app ]]; then
|
|
msg_error "No ${APP} installation found."
|
|
exit 1
|
|
fi
|
|
|
|
if check_for_gh_release "pinchflat" "kieraneglin/pinchflat"; then
|
|
msg_info "Stopping Service"
|
|
systemctl stop pinchflat
|
|
msg_ok "Stopped Service"
|
|
|
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "pinchflat" "kieraneglin/pinchflat" "tarball" "latest" "/opt/pinchflat-src"
|
|
|
|
msg_info "Building Pinchflat"
|
|
cd /opt/pinchflat-src
|
|
export MIX_ENV=prod
|
|
export ERL_FLAGS="+JPperf true"
|
|
$STD mix deps.get --only prod
|
|
$STD mix deps.compile
|
|
$STD yarn --cwd assets install
|
|
$STD mix assets.deploy
|
|
$STD mix compile
|
|
$STD mix release --overwrite
|
|
rm -rf /opt/pinchflat/app
|
|
cp -r _build/prod/rel/pinchflat /opt/pinchflat/app
|
|
msg_ok "Built Pinchflat"
|
|
|
|
msg_info "Starting Service"
|
|
systemctl start pinchflat
|
|
msg_ok "Started Service"
|
|
msg_ok "Updated successfully!"
|
|
fi
|
|
exit
|
|
}
|
|
|
|
start
|
|
build_container
|
|
description
|
|
msg_ok "Completed Successfully!\n"
|
|
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8945${CL}"
|