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 #!/usr/bin/env bash
source <(curl -s https://raw.githubusercontent.com/AminGholizad/ProxmoxVED/main/misc/build.func) source <(curl -s https://raw.githubusercontent.com/AminGholizad/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2026 community-scripts ORG # Copyright (c) 2021-2026 community-scripts ORG
# Author: Amin Gholizad # Author: [AminGholizad]
# License: MIT | https://github.com/AminGholizad/ProxmoxVED/raw/main/LICENSE # License: MIT | https://github.com/AminGholizad/ProxmoxVED/raw/main/LICENSE
# Source: https://github.com/PanSalut/Koffan # Source: https://github.com/PanSalut/Koffan
@@ -35,10 +35,10 @@ function update_script() {
msg_ok "Stopped Service" msg_ok "Stopped Service"
msg_info "Backing up Data" msg_info "Backing up Data"
cp -r /opt/koffan/data /opt/koffan_data_backup 2>/dev/null || true cp -r /opt/koffan/data /opt/koffan_data_backup
msg_ok "Backed up Data" msg_ok "Backed up Data"
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "koffan" "PanSalut/Koffan" CLEAN_INSTALL=1 fetch_and_deploy_gh_release "koffan" "PanSalut/Koffan" "tarball"
msg_info "Rebuilding Koffan" msg_info "Rebuilding Koffan"
cd /opt/koffan cd /opt/koffan
@@ -46,7 +46,7 @@ function update_script() {
msg_ok "Rebuild Completed" msg_ok "Rebuild Completed"
msg_info "Restoring Data" msg_info "Restoring Data"
cp -r /opt/koffan_data_backup/. /opt/koffan/data/ 2>/dev/null || true cp -r /opt/koffan_data_backup/. /opt/koffan/data/
rm -rf /opt/koffan_data_backup rm -rf /opt/koffan_data_backup
msg_ok "Restored Data" msg_ok "Restored Data"

View File

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

View File

@@ -1,14 +1,12 @@
{ {
"name": "Koffan", "name": "Koffan",
"slug": "koffan", "slug": "koffan",
"categories": [ "categories": [12],
12
],
"date_created": "2026-05-21", "date_created": "2026-05-21",
"type": "ct", "type": "ct",
"updateable": true, "updateable": true,
"privileged": false, "privileged": false,
"interface_port": null, "interface_port": 3000,
"documentation": null, "documentation": null,
"website": null, "website": null,
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/koffan.webp", "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/koffan.webp",
@@ -33,8 +31,8 @@
}, },
"notes": [ "notes": [
{ {
"text": "Change the default password after first login!", "text": "Credentials are saved to `~/koffan.creds`.",
"type": "warning" "type": "info"
} }
] ]
} }