edited for new comments

This commit is contained in:
amin
2026-05-25 17:42:44 +02:00
parent d945f8bc2b
commit 30ab7d682a
3 changed files with 23 additions and 19 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: Amin Gholizad
# Author: [AminGholizad]
# License: MIT | https://github.com/AminGholizad/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/PanSalut/Koffan
@@ -13,25 +13,32 @@ setting_up_container
network_check
update_os
msg_info "Installing Dependencies"
ensure_dependencies build-essential
setup_go
msg_ok "Installed Dependencies"
fetch_and_deploy_gh_release "koffan" "PanSalut/Koffan"
fetch_and_deploy_gh_release "koffan" "PanSalut/Koffan" "tarball"
msg_info "Building Koffan"
cd /opt/koffan
go build -o koffan main.go
msg_ok "Building Completed"
msg_ok "Built Koffan"
msg_info "Configuring Koffan"
PASSWORD=$(openssl rand -base64 12)
mkdir /opt/koffan/data
cat <<EOF >/opt/koffan/data/.env
APP_ENV=production
APP_PASSWORD=shopping123
APP_PASSWORD=${PASSWORD}
PORT=3000
DB_PATH=/opt/koffan/data/shopping.db
EOF
msg_ok "Configuration Completed"
{
echo "Password: ${PASSWORD}"
} >~/koffan.creds
msg_ok "Configured Koffan"
msg_info "Creating systemd service"
cat <<EOF >/etc/systemd/system/koffan.service
@@ -48,11 +55,10 @@ Restart=always
[Install]
WantedBy=multi-user.target
EOF
msg_ok "Service created"
msg_info "Finalizing Koffan installation"
systemctl enable -q --now koffan
msg_ok "Created systemd service"
motd_ssh
customize
msg_ok "Koffan installation complete"
cleanup_lxc