Updated to current template

create the data folder outside for easier cleaning

added build essentials

Update koffan.sh
This commit is contained in:
amin
2026-05-21 15:59:50 +02:00
parent 9b95446211
commit bb04e21e6a
2 changed files with 46 additions and 63 deletions

View File

@@ -20,47 +20,37 @@ color
catch_errors catch_errors
function update_script() { function update_script() {
header_info header_info
check_container_storage check_container_storage
check_container_resources check_container_resources
if [[ ! -f /opt/koffan/koffan ]]; then if [[ ! -f /opt/koffan/koffan ]]; then
msg_error "No ${APP} Installation Found!" msg_error "No ${APP} Installation Found!"
exit
fi
RELEASE=$(curl -s https://api.github.com/repos/PanSalut/Koffan/releases/latest | grep "tag_name" | sed -E 's/[^0-9.]//g')
if [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then
msg_info "Stopping $APP"
systemctl stop koffan.service
msg_ok "Stopped $APP"
msg_info "Creating Backup"
tar -czf "/opt/${APP}_backup_$(date +%F).tar.gz" /opt/koffan/
msg_ok "Backup Created"
msg_info "Updating $APP to ${RELEASE}"
curl -fsSL "https://github.com/PanSalut/Koffan/archive/refs/tags/v${RELEASE}.tar.gz" | tar -xz
mv ${APP}-${RELEASE}/ /opt/koffan
cd /opt/koffan
go build -o $APP main.go
msg_ok "Updated $APP to v${RELEASE}"
msg_info "Starting $APP"
systemctl start $APP.service
msg_ok "Started $APP"
msg_info "Cleaning Up"
# nothing to clean
msg_ok "Cleanup Completed"
echo "${RELEASE}" >/opt/${APP}_version.txt
msg_ok "Update Successful"
else
msg_ok "No update required. ${APP} is already at v${RELEASE}"
fi
exit exit
fi
if check_for_gh_release "koffan" "PanSalut/Koffan"; then
msg_info "Stopping Service"
systemctl stop koffan
msg_ok "Stopped Service"
msg_info "Creating Backup"
tar -czf /opt/koffan_backup_$(date +%F).tar.gz /opt/data/
msg_ok "Backup Created"
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "koffan" "PanSalut/Koffan"
msg_info "Rebuilding Koffan"
cd /opt/koffan
go build -o koffan main.go
msg_ok "Rebuild Completed"
msg_info "Starting Service"
systemctl start koffan
msg_ok "Started Service"
msg_ok "Updated successfully!"
fi
exit
} }
start start
@@ -70,5 +60,4 @@ description
msg_ok "Completed successfully!\n" msg_ok "Completed successfully!\n"
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}"
echo -e "${INFO}${YW} The default password is: shopping123${CL}"
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}"

View File

@@ -13,36 +13,34 @@ setting_up_container
network_check network_check
update_os update_os
msg_info "Installing Dependencies" ensure_dependencies build-essential
$STD apt-get install -y \ setup_go
curl \
sudo \
mc \
golang-go
msg_ok "Installed Dependencies"
msg_info "Setup ${APPLICATION}" fetch_and_deploy_gh_release "koffan" "PanSalut/Koffan"
RELEASE=$(curl -s https://api.github.com/repos/PanSalut/Koffan/releases/latest | grep "tag_name" | sed -E 's/[^0-9.]//g')
curl -fsSL "https://github.com/PanSalut/Koffan/archive/refs/tags/v${RELEASE}.tar.gz" | tar -xz msg_info "Building Koffan"
mv ${APPLICATION}-${RELEASE}/ /opt/koffan
cd /opt/koffan cd /opt/koffan
go build -o koffan main.go go build -o koffan main.go
cat <<EOF >/opt/.env msg_ok "Building Completed"
msg_info "Configuring Koffan"
mkdir /opt/data
cat <<EOF >/opt/data/.env
APP_ENV=production APP_ENV=production
APP_PASSWORD=shopping123 APP_PASSWORD=shopping123
PORT=3000 PORT=3000
DB_PATH=/opt/data/shopping.db
EOF EOF
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt msg_ok "Configuration Completed"
msg_ok "Setup ${APPLICATION}"
msg_info "Creating Service" msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/${APPLICATION}.service cat <<EOF >/etc/systemd/system/koffan.service
[Unit] [Unit]
Description=${APPLICATION} Service Description=Koffan Service
After=network.target After=network.target
[Service] [Service]
EnvironmentFile=/opt/.env EnvironmentFile=/opt/data/.env
WorkingDirectory=/opt/koffan WorkingDirectory=/opt/koffan
ExecStart=/opt/koffan/koffan ExecStart=/opt/koffan/koffan
Restart=always Restart=always
@@ -50,13 +48,9 @@ Restart=always
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target
EOF EOF
systemctl enable -q --now ${APPLICATION}.service systemctl enable -q --now koffan
msg_ok "Created Service" msg_ok "Created Service"
motd_ssh motd_ssh
customize customize
cleanup_lxc
msg_info "Cleaning up"
$STD apt-get -y autoremove
$STD apt-get -y autoclean
msg_ok "Cleaned"