testing
This commit is contained in:
59
.git-setup-info
Normal file
59
.git-setup-info
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
# Git Configuration for ProxmoxVED Development
|
||||||
|
|
||||||
|
## Recommended Git Configuration
|
||||||
|
|
||||||
|
### Set up remotes for easy syncing with upstream:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# View your current remotes
|
||||||
|
git remote -v
|
||||||
|
|
||||||
|
# If you don't have 'upstream' configured, add it:
|
||||||
|
git remote add upstream https://github.com/community-scripts/ProxmoxVED.git
|
||||||
|
|
||||||
|
# Verify both remotes exist:
|
||||||
|
git remote -v
|
||||||
|
# Should show:
|
||||||
|
# origin https://github.com/YOUR_USERNAME/ProxmoxVED.git (fetch)
|
||||||
|
# origin https://github.com/YOUR_USERNAME/ProxmoxVED.git (push)
|
||||||
|
# upstream https://github.com/community-scripts/ProxmoxVED.git (fetch)
|
||||||
|
# upstream https://github.com/community-scripts/ProxmoxVED.git (push)
|
||||||
|
```
|
||||||
|
|
||||||
|
### Configure Git User (if not done globally)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git config user.name "Your Name"
|
||||||
|
git config user.email "your.email@example.com"
|
||||||
|
|
||||||
|
# Or configure globally:
|
||||||
|
git config --global user.name "Your Name"
|
||||||
|
git config --global user.email "your.email@example.com"
|
||||||
|
```
|
||||||
|
|
||||||
|
### Useful Git Workflows
|
||||||
|
|
||||||
|
**Keep your fork up-to-date:**
|
||||||
|
```bash
|
||||||
|
git fetch upstream
|
||||||
|
git rebase upstream/main
|
||||||
|
git push origin main
|
||||||
|
```
|
||||||
|
|
||||||
|
**Create feature branch:**
|
||||||
|
```bash
|
||||||
|
git checkout -b feature/my-awesome-app
|
||||||
|
# Make changes...
|
||||||
|
git commit -m "feat: add my awesome app"
|
||||||
|
git push origin feature/my-awesome-app
|
||||||
|
```
|
||||||
|
|
||||||
|
**Pull latest from upstream:**
|
||||||
|
```bash
|
||||||
|
git fetch upstream
|
||||||
|
git merge upstream/main
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
For more help, see: docs/CONTRIBUTION_GUIDE.md
|
||||||
2
.github/workflows/scripts/app-test/pr-alpine-install.func
generated
vendored
2
.github/workflows/scripts/app-test/pr-alpine-install.func
generated
vendored
@@ -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: Michel Roegl-Brunner (michelroegl-brunner)
|
# Author: Michel Roegl-Brunner (michelroegl-brunner)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
|
|
||||||
color() {
|
color() {
|
||||||
return
|
return
|
||||||
|
|||||||
2
.github/workflows/scripts/app-test/pr-build.func
generated
vendored
2
.github/workflows/scripts/app-test/pr-build.func
generated
vendored
@@ -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: Michel Roegl-Brunner (michelroegl-brunner)
|
# Author: Michel Roegl-Brunner (michelroegl-brunner)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
|
|
||||||
variables() {
|
variables() {
|
||||||
NSAPP=$(echo ${APP,,} | tr -d ' ') # This function sets the NSAPP variable by converting the value of the APP variable to lowercase and removing any spaces.
|
NSAPP=$(echo ${APP,,} | tr -d ' ') # This function sets the NSAPP variable by converting the value of the APP variable to lowercase and removing any spaces.
|
||||||
|
|||||||
2
.github/workflows/scripts/app-test/pr-create-lxc.sh
generated
vendored
2
.github/workflows/scripts/app-test/pr-create-lxc.sh
generated
vendored
@@ -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: Michel Roegl-Brunner (michelroegl-brunner)
|
# Author: Michel Roegl-Brunner (michelroegl-brunner)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
|
|
||||||
color() {
|
color() {
|
||||||
return
|
return
|
||||||
|
|||||||
2
.github/workflows/scripts/app-test/pr-install.func
generated
vendored
2
.github/workflows/scripts/app-test/pr-install.func
generated
vendored
@@ -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: Michel Roegl-Brunner (michelroegl-brunner)
|
# Author: Michel Roegl-Brunner (michelroegl-brunner)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
|
|
||||||
color() {
|
color() {
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/toeverything/AFFiNE
|
# Source: https://github.com/toeverything/AFFiNE
|
||||||
|
|
||||||
APP="AFFiNE"
|
APP="AFFiNE"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://akaunting.com/
|
# Source: https://akaunting.com/
|
||||||
|
|
||||||
APP="Akaunting"
|
APP="Akaunting"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://almalinux.org/
|
# Source: https://almalinux.org/
|
||||||
|
|
||||||
APP="AlmaLinux"
|
APP="AlmaLinux"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: Tobias Salzmann (Eun)
|
# Author: Tobias Salzmann (Eun)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: CopilotAssistant (community-scripts)
|
# Author: CopilotAssistant (community-scripts)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/coredns/coredns
|
# Source: https://github.com/coredns/coredns
|
||||||
|
|
||||||
APP="Alpine-CoreDNS"
|
APP="Alpine-CoreDNS"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 tteck
|
# Copyright (c) 2021-2026 tteck
|
||||||
# Author: tteck (tteckster)
|
# Author: tteck (tteckster)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://alpinelinux.org/
|
# Source: https://alpinelinux.org/
|
||||||
|
|
||||||
APP="Alpine"
|
APP="Alpine"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://archlinux.org/
|
# Source: https://archlinux.org/
|
||||||
|
|
||||||
APP="Arch Linux"
|
APP="Arch Linux"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/automatic-ripping-machine/automatic-ripping-machine
|
# Source: https://github.com/automatic-ripping-machine/automatic-ripping-machine
|
||||||
|
|
||||||
APP="ARM"
|
APP="ARM"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: Thieneret
|
# Author: Thieneret
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/goauthentik/authentik
|
# Source: https://github.com/goauthentik/authentik
|
||||||
|
|
||||||
APP="authentik"
|
APP="authentik"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/baserow/baserow
|
# Source: https://github.com/baserow/baserow
|
||||||
|
|
||||||
APP="Baserow"
|
APP="Baserow"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: glabutis
|
# Author: glabutis
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/bitfocus/companion
|
# Source: https://github.com/bitfocus/companion
|
||||||
|
|
||||||
APP="Bitfocus-Companion"
|
APP="Bitfocus-Companion"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://blinko.space/
|
# Source: https://blinko.space/
|
||||||
|
|
||||||
APP="Blinko"
|
APP="Blinko"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: Slaviša Arežina (tremor021)
|
# Author: Slaviša Arežina (tremor021)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/caddymanager/caddymanager
|
# Source: https://github.com/caddymanager/caddymanager
|
||||||
|
|
||||||
APP="CaddyManager"
|
APP="CaddyManager"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://www.centos.org/centos-stream/
|
# Source: https://www.centos.org/centos-stream/
|
||||||
|
|
||||||
APP="CentOS Stream"
|
APP="CentOS Stream"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://certimate.me/
|
# Source: https://certimate.me/
|
||||||
|
|
||||||
APP="Certimate"
|
APP="Certimate"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://clickhouse.com
|
# Source: https://clickhouse.com
|
||||||
|
|
||||||
APP="ClickHouse"
|
APP="ClickHouse"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: mathiasnagler
|
# Author: mathiasnagler
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/router-for-me/CLIProxyAPI
|
# Source: https://github.com/router-for-me/CLIProxyAPI
|
||||||
|
|
||||||
APP="CLIProxyAPI"
|
APP="CLIProxyAPI"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: reptil1990
|
# Author: reptil1990
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/qdm12/ddns-updater
|
# Source: https://github.com/qdm12/ddns-updater
|
||||||
|
|
||||||
APP="DDNS-Updater"
|
APP="DDNS-Updater"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source:
|
# Source:
|
||||||
|
|
||||||
APP="Debian"
|
APP="Debian"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (Canbiz)
|
# Author: MickLesk (Canbiz)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/community-scripts/ProxmoxVE
|
# Source: https://github.com/community-scripts/ProxmoxVE
|
||||||
|
|
||||||
APP="Docspell"
|
APP="Docspell"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: Nícolas Pastorello (opastorello)
|
# Author: Nícolas Pastorello (opastorello)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/jumpserver/jumpserver
|
# Source: https://github.com/jumpserver/jumpserver
|
||||||
|
|
||||||
APP="JumpServer"
|
APP="JumpServer"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/getmaxun/maxun
|
# Source: https://github.com/getmaxun/maxun
|
||||||
|
|
||||||
APP="Maxun"
|
APP="Maxun"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 tteck
|
# Copyright (c) 2021-2026 tteck
|
||||||
# Author: tteck (tteckster)
|
# Author: tteck (tteckster)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://www.debian.org/
|
# Source: https://www.debian.org/
|
||||||
|
|
||||||
APP="ocis"
|
APP="ocis"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://www.mailpiler.org/
|
# Source: https://www.mailpiler.org/
|
||||||
|
|
||||||
APP="Piler"
|
APP="Piler"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/agersant/polaris
|
# Source: https://github.com/agersant/polaris
|
||||||
|
|
||||||
APP="Polaris"
|
APP="Polaris"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source:
|
# Source:
|
||||||
|
|
||||||
APP="Roundcubemail"
|
APP="Roundcubemail"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/rybbit-io/rybbit
|
# Source: https://github.com/rybbit-io/rybbit
|
||||||
|
|
||||||
APP="Rybbit"
|
APP="Rybbit"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: SunFlowerOwl
|
# Author: SunFlowerOwl
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/haugene/docker-transmission-openvpn
|
# Source: https://github.com/haugene/docker-transmission-openvpn
|
||||||
|
|
||||||
APP="transmission-openvpn"
|
APP="transmission-openvpn"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: vhsdream
|
# Author: vhsdream
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/fccview/degoog
|
# Source: https://github.com/fccview/degoog
|
||||||
|
|
||||||
APP="degoog"
|
APP="degoog"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://www.devuan.org/
|
# Source: https://www.devuan.org/
|
||||||
|
|
||||||
APP="Devuan"
|
APP="Devuan"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://www.discourse.org/
|
# Source: https://www.discourse.org/
|
||||||
|
|
||||||
APP="Discourse"
|
APP="Discourse"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://www.docuseal.com/
|
# Source: https://www.docuseal.com/
|
||||||
|
|
||||||
APP="DocuSeal"
|
APP="DocuSeal"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/Panonim/dynacat
|
# Source: https://github.com/Panonim/dynacat
|
||||||
|
|
||||||
APP="Dynacat"
|
APP="Dynacat"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/ente-io/ente
|
# Source: https://github.com/ente-io/ente
|
||||||
|
|
||||||
APP="Ente"
|
APP="Ente"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: community-scripts
|
# Author: community-scripts
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/frappe/erpnext
|
# Source: https://github.com/frappe/erpnext
|
||||||
|
|
||||||
APP="ERPNext"
|
APP="ERPNext"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main}"
|
COMMUNITY_SCRIPTS_URL="${COMMUNITY_SCRIPTS_URL:-https://raw.githubusercontent.com/--full/ProxmoxVED/main}"
|
||||||
source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/build.func")
|
source <(curl -fsSL "$COMMUNITY_SCRIPTS_URL/misc/build.func")
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: John Lombardo
|
# Author: John Lombardo
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/thelastoutpostworkshop/ESPConnect
|
# Source: https://github.com/thelastoutpostworkshop/ESPConnect
|
||||||
|
|
||||||
APP="ESPConnect"
|
APP="ESPConnect"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://fedoraproject.org/
|
# Source: https://fedoraproject.org/
|
||||||
|
|
||||||
APP="Fedora"
|
APP="Fedora"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: kkroboth
|
# Author: kkroboth
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/fleetdm/fleet
|
# Source: https://github.com/fleetdm/fleet
|
||||||
|
|
||||||
APP="Fleet"
|
APP="Fleet"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: Simon Friedrich (lengschder97)
|
# Author: Simon Friedrich (lengschder97)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://forgejo.org/
|
# Source: https://forgejo.org/
|
||||||
|
|
||||||
APP="Forgejo-Runner"
|
APP="Forgejo-Runner"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: aliaksei135
|
# Author: aliaksei135
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/arpanghosh8453/garmin-grafana
|
# Source: https://github.com/arpanghosh8453/garmin-grafana
|
||||||
|
|
||||||
APP="garmin-grafana"
|
APP="garmin-grafana"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://www.gentoo.org/
|
# Source: https://www.gentoo.org/
|
||||||
|
|
||||||
APP="Gentoo"
|
APP="Gentoo"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/yusing/godoxy
|
# Source: https://github.com/yusing/godoxy
|
||||||
|
|
||||||
APP="GoDoxy"
|
APP="GoDoxy"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/hudikhq/hoodik
|
# Source: https://github.com/hudikhq/hoodik
|
||||||
|
|
||||||
APP="Hoodik"
|
APP="Hoodik"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: vhsdream
|
# Author: vhsdream
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/iv-org/invidious
|
# Source: https://github.com/iv-org/invidious
|
||||||
|
|
||||||
APP="Invidious"
|
APP="Invidious"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://invoiceshelf.com/
|
# Source: https://invoiceshelf.com/
|
||||||
|
|
||||||
APP="InvoiceShelf"
|
APP="InvoiceShelf"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/kanbn/kan
|
# Source: https://github.com/kanbn/kan
|
||||||
|
|
||||||
APP="Kan"
|
APP="Kan"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/hakwerk/labca
|
# Source: https://github.com/hakwerk/labca
|
||||||
|
|
||||||
APP="LabCA"
|
APP="LabCA"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/danny-avila/LibreChat
|
# Source: https://github.com/danny-avila/LibreChat
|
||||||
|
|
||||||
APP="LibreChat"
|
APP="LibreChat"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/lobehub/lobehub
|
# Source: https://github.com/lobehub/lobehub
|
||||||
|
|
||||||
APP="LobeHub"
|
APP="LobeHub"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: BillyOutlast
|
# Author: BillyOutlast
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/mudler/LocalAGI
|
# Source: https://github.com/mudler/LocalAGI
|
||||||
|
|
||||||
APP="LocalAGI"
|
APP="LocalAGI"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/LycheeOrg/Lychee
|
# Source: https://github.com/LycheeOrg/Lychee
|
||||||
|
|
||||||
APP="Lychee"
|
APP="Lychee"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://matomo.org/
|
# Source: https://matomo.org/
|
||||||
|
|
||||||
APP="Matomo"
|
APP="Matomo"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/NagiosEnterprises/nagioscore
|
# Source: https://github.com/NagiosEnterprises/nagioscore
|
||||||
|
|
||||||
APP="Nagios"
|
APP="Nagios"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: CanbiZ (MickLesk)
|
# Author: CanbiZ (MickLesk)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://neko.m1k1o.net/
|
# Source: https://neko.m1k1o.net/
|
||||||
|
|
||||||
APP="Neko"
|
APP="Neko"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: GitHub Copilot (GPT-5.3-Codex)
|
# Author: GitHub Copilot (GPT-5.3-Codex)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/nezhahq/nezha
|
# Source: https://github.com/nezhahq/nezha
|
||||||
|
|
||||||
APP="Nezha"
|
APP="Nezha"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://www.openeuler.org/
|
# Source: https://www.openeuler.org/
|
||||||
|
|
||||||
# NOTE: openEuler has a PVE compatibility issue
|
# NOTE: openEuler has a PVE compatibility issue
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://www.opensuse.org/
|
# Source: https://www.opensuse.org/
|
||||||
|
|
||||||
APP="openSUSE"
|
APP="openSUSE"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 tteck
|
# Copyright (c) 2021-2026 tteck
|
||||||
# Author: tteck | Co-Author: havardthom | Co-Author: Slaviša Arežina (tremor021)
|
# Author: tteck | Co-Author: havardthom | Co-Author: Slaviša Arežina (tremor021)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: vhsdream
|
# Author: vhsdream
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/DioCrafts/OxiCloud
|
# Source: https://github.com/DioCrafts/OxiCloud
|
||||||
|
|
||||||
APP="OxiCloud"
|
APP="OxiCloud"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: Fabian Pulch (fpulch)
|
# Author: Fabian Pulch (fpulch)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/paperclipai/paperclip
|
# Source: https://github.com/paperclipai/paperclip
|
||||||
|
|
||||||
APP="Paperclip"
|
APP="Paperclip"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://www.papermark.com/
|
# Source: https://www.papermark.com/
|
||||||
|
|
||||||
APP="Papermark"
|
APP="Papermark"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://pixelfed.org/
|
# Source: https://pixelfed.org/
|
||||||
|
|
||||||
APP="Pixelfed"
|
APP="Pixelfed"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: onionrings29
|
# Author: onionrings29
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://plane.so | GitHub: https://github.com/makeplane/plane
|
# Source: https://plane.so | GitHub: https://github.com/makeplane/plane
|
||||||
|
|
||||||
APP="Plane"
|
APP="Plane"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/gitroomhq/postiz-app
|
# Source: https://github.com/gitroomhq/postiz-app
|
||||||
|
|
||||||
APP="Postiz"
|
APP="Postiz"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/HeyPuter/puter
|
# Source: https://github.com/HeyPuter/puter
|
||||||
|
|
||||||
APP="Puter"
|
APP="Puter"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://rockylinux.org/
|
# Source: https://rockylinux.org/
|
||||||
|
|
||||||
APP="Rocky Linux"
|
APP="Rocky Linux"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://rss-bridge.org/
|
# Source: https://rss-bridge.org/
|
||||||
|
|
||||||
APP="RSS-Bridge"
|
APP="RSS-Bridge"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: GitHub Copilot (GPT-5.3-Codex)
|
# Author: GitHub Copilot (GPT-5.3-Codex)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/go-shiori/shiori
|
# Source: https://github.com/go-shiori/shiori
|
||||||
|
|
||||||
APP="Shiori"
|
APP="Shiori"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://shlink.io/
|
# Source: https://shlink.io/
|
||||||
|
|
||||||
APP="Shlink"
|
APP="Shlink"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/simple-login/app
|
# Source: https://github.com/simple-login/app
|
||||||
|
|
||||||
APP="SimpleLogin"
|
APP="SimpleLogin"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: bzumhagen
|
# Author: bzumhagen
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/Wetzel402/Skylite-UX
|
# Source: https://github.com/Wetzel402/Skylite-UX
|
||||||
|
|
||||||
APP="Skylite-UX"
|
APP="Skylite-UX"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/andrii-kryvoviaz/slink
|
# Source: https://github.com/andrii-kryvoviaz/slink
|
||||||
|
|
||||||
APP="Slink"
|
APP="Slink"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://www.solidtime.io/
|
# Source: https://www.solidtime.io/
|
||||||
|
|
||||||
APP="SolidTime"
|
APP="SolidTime"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/Nezreka/SoulSync
|
# Source: https://github.com/Nezreka/SoulSync
|
||||||
|
|
||||||
APP="SoulSync"
|
APP="SoulSync"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://gitlab.com/storyteller-platform/storyteller
|
# Source: https://gitlab.com/storyteller-platform/storyteller
|
||||||
|
|
||||||
APP="Storyteller"
|
APP="Storyteller"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: PouletteMC
|
# Author: PouletteMC
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://surrealdb.com
|
# Source: https://surrealdb.com
|
||||||
|
|
||||||
APP="SurrealDB"
|
APP="SurrealDB"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: community-scripts
|
# Author: community-scripts
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/teableio/teable
|
# Source: https://github.com/teableio/teable
|
||||||
|
|
||||||
APP="Teable"
|
APP="Teable"
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/tolgee/tolgee-platform
|
# Source: https://github.com/tolgee/tolgee-platform
|
||||||
|
|
||||||
APP="Tolgee"
|
APP="Tolgee"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2025 community-scripts ORG
|
# Copyright (c) 2021-2025 community-scripts ORG
|
||||||
# Author: KernelSailor
|
# Author: KernelSailor
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://snowflake.torproject.org/
|
# Source: https://snowflake.torproject.org/
|
||||||
|
|
||||||
APP="tor-snowflake"
|
APP="tor-snowflake"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: community-scripts
|
# Author: community-scripts
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/tubearchivist/tubearchivist
|
# Source: https://github.com/tubearchivist/tubearchivist
|
||||||
|
|
||||||
APP="Tube Archivist"
|
APP="Tube Archivist"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: MickLesk (CanbiZ)
|
# Author: MickLesk (CanbiZ)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/twentyhq/twenty
|
# Source: https://github.com/twentyhq/twenty
|
||||||
|
|
||||||
APP="Twenty"
|
APP="Twenty"
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/github.func)
|
# source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/github.func)
|
||||||
# Copyright (c) 2021-2026 tteck
|
# Copyright (c) 2021-2026 tteck
|
||||||
# Author: tteck (tteckster)
|
# Author: tteck (tteckster)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://ubuntu.com/
|
# Source: https://ubuntu.com/
|
||||||
|
|
||||||
APP="Ubuntu"
|
APP="Ubuntu"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
|
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: dave-yap (dave-yap) | Co-author: remz1337
|
# Author: dave-yap (dave-yap) | Co-author: remz1337
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://zitadel.com/
|
# Source: https://zitadel.com/
|
||||||
|
|
||||||
APP="Zitadel"
|
APP="Zitadel"
|
||||||
|
|||||||
@@ -716,8 +716,8 @@ EOF
|
|||||||
### Need More Information?
|
### Need More Information?
|
||||||
|
|
||||||
- 📖 [Main Documentation](../../docs/)
|
- 📖 [Main Documentation](../../docs/)
|
||||||
- 🐛 [Report Issues](https://github.com/community-scripts/ProxmoxVED/issues)
|
- 🐛 [Report Issues](https://github.com/--full/ProxmoxVED/issues)
|
||||||
- 💬 [Discussions](https://github.com/community-scripts/ProxmoxVED/discussions)
|
- 💬 [Discussions](https://github.com/--full/ProxmoxVED/discussions)
|
||||||
|
|
||||||
### Useful Commands
|
### Useful Commands
|
||||||
|
|
||||||
|
|||||||
@@ -7,16 +7,16 @@ Development modes provide powerful debugging and testing capabilities for contai
|
|||||||
```bash
|
```bash
|
||||||
# Single mode
|
# Single mode
|
||||||
export dev_mode="motd"
|
export dev_mode="motd"
|
||||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/wallabag.sh)"
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/ct/wallabag.sh)"
|
||||||
|
|
||||||
# Multiple modes (comma-separated)
|
# Multiple modes (comma-separated)
|
||||||
export dev_mode="motd,keep,trace"
|
export dev_mode="motd,keep,trace"
|
||||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/wallabag.sh)"
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/ct/wallabag.sh)"
|
||||||
|
|
||||||
# Combine with verbose output
|
# Combine with verbose output
|
||||||
export var_verbose="yes"
|
export var_verbose="yes"
|
||||||
export dev_mode="pause,logs"
|
export dev_mode="pause,logs"
|
||||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/wallabag.sh)"
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/ct/wallabag.sh)"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Available Modes
|
## Available Modes
|
||||||
@@ -457,7 +457,7 @@ grep "ed563b19" /var/log/community-scripts/*.log
|
|||||||
```bash
|
```bash
|
||||||
# Initial test to see the failure
|
# Initial test to see the failure
|
||||||
export dev_mode="keep,logs"
|
export dev_mode="keep,logs"
|
||||||
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/ct/wallabag.sh)"
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/--full/ProxmoxVED/main/ct/wallabag.sh)"
|
||||||
|
|
||||||
# Container 107 kept, check logs
|
# Container 107 kept, check logs
|
||||||
tail /var/log/community-scripts/install-*.log
|
tail /var/log/community-scripts/install-*.log
|
||||||
|
|||||||
@@ -285,7 +285,7 @@ Official discussion: [GitHub #8126](https://github.com/community-scripts/Proxmox
|
|||||||
|
|
||||||
Found an undocumented exit code or have a solution to share? Please:
|
Found an undocumented exit code or have a solution to share? Please:
|
||||||
|
|
||||||
1. Open an issue on [GitHub](https://github.com/community-scripts/ProxmoxVED/issues)
|
1. Open an issue on [GitHub](https://github.com/--full/ProxmoxVED/issues)
|
||||||
2. Include:
|
2. Include:
|
||||||
- Exit code number
|
- Exit code number
|
||||||
- Error message
|
- Error message
|
||||||
|
|||||||
@@ -272,7 +272,7 @@ Documentation for `/misc` - 9 core function libraries with complete references.
|
|||||||
Found an error? Want to improve docs?
|
Found an error? Want to improve docs?
|
||||||
|
|
||||||
1. See: [contribution/README.md](contribution/README.md) for full contribution guide
|
1. See: [contribution/README.md](contribution/README.md) for full contribution guide
|
||||||
2. Open issue: [GitHub Issues](https://github.com/community-scripts/ProxmoxVED/issues)
|
2. Open issue: [GitHub Issues](https://github.com/--full/ProxmoxVED/issues)
|
||||||
3. Or submit PR with improvements
|
3. Or submit PR with improvements
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -36,8 +36,8 @@ Before contributing, set up:
|
|||||||
|
|
||||||
Use these templates as your starting point:
|
Use these templates as your starting point:
|
||||||
|
|
||||||
- [CT template: `AppName.sh`](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh)
|
- [CT template: `AppName.sh`](https://github.com/--full/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh)
|
||||||
- [Install template: `AppName-install.sh`](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh)
|
- [Install template: `AppName-install.sh`](https://github.com/--full/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh)
|
||||||
|
|
||||||
## Script types
|
## Script types
|
||||||
|
|
||||||
@@ -45,7 +45,7 @@ Use these templates as your starting point:
|
|||||||
|
|
||||||
Reference guide:
|
Reference guide:
|
||||||
|
|
||||||
- [CT coding guide for `AppName.sh`](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md)
|
- [CT coding guide for `AppName.sh`](https://github.com/--full/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md)
|
||||||
|
|
||||||
This script is responsible for:
|
This script is responsible for:
|
||||||
|
|
||||||
@@ -57,7 +57,7 @@ This script is responsible for:
|
|||||||
|
|
||||||
Reference guide:
|
Reference guide:
|
||||||
|
|
||||||
- [Install coding guide for `AppName-install.sh`](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.md)
|
- [Install coding guide for `AppName-install.sh`](https://github.com/--full/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.md)
|
||||||
|
|
||||||
This script is responsible for:
|
This script is responsible for:
|
||||||
|
|
||||||
@@ -131,7 +131,7 @@ Add a Json file with all Metadata for the App. [DOCS](https://community-scripts.
|
|||||||
|
|
||||||
## Pages
|
## Pages
|
||||||
|
|
||||||
- [CT Template: AppName.sh](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh)
|
- [CT Template: AppName.sh](https://github.com/--full/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh)
|
||||||
- [Install Template: AppName-install.sh](https://github.com/community-scripts/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh)
|
- [Install Template: AppName-install.sh](https://github.com/--full/ProxmoxVED/blob/main/.github/CONTRIBUTOR_AND_GUIDES/install/AppName-install.sh)
|
||||||
- [Fork setup guide](./FORK_SETUP.md)
|
- [Fork setup guide](./FORK_SETUP.md)
|
||||||
- [Contribution README](./README.md)
|
- [Contribution README](./README.md)
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ The script updates these documentation files:
|
|||||||
### Keep Your Fork Updated
|
### Keep Your Fork Updated
|
||||||
```bash
|
```bash
|
||||||
# Add upstream if you haven't already
|
# Add upstream if you haven't already
|
||||||
git remote add upstream https://github.com/community-scripts/ProxmoxVED.git
|
git remote add upstream https://github.com/--full/ProxmoxVED.git
|
||||||
|
|
||||||
# Get latest from upstream
|
# Get latest from upstream
|
||||||
git fetch upstream
|
git fetch upstream
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 1. Fork the repository on GitHub
|
# 1. Fork the repository on GitHub
|
||||||
# Visit: https://github.com/community-scripts/ProxmoxVED
|
# Visit: https://github.com/--full/ProxmoxVED
|
||||||
# Click: Fork (top right)
|
# Click: Fork (top right)
|
||||||
|
|
||||||
# 2. Clone your fork
|
# 2. Clone your fork
|
||||||
@@ -174,7 +174,7 @@ Examples:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 1. Fork on GitHub (one-time)
|
# 1. Fork on GitHub (one-time)
|
||||||
# Visit: https://github.com/community-scripts/ProxmoxVED
|
# Visit: https://github.com/--full/ProxmoxVED
|
||||||
# Click: Fork
|
# Click: Fork
|
||||||
|
|
||||||
# 2. Clone your fork
|
# 2. Clone your fork
|
||||||
@@ -182,7 +182,7 @@ git clone https://github.com/YOUR_USERNAME/ProxmoxVED.git
|
|||||||
cd ProxmoxVED
|
cd ProxmoxVED
|
||||||
|
|
||||||
# 3. Add upstream remote for updates
|
# 3. Add upstream remote for updates
|
||||||
git remote add upstream https://github.com/community-scripts/ProxmoxVED.git
|
git remote add upstream https://github.com/--full/ProxmoxVED.git
|
||||||
|
|
||||||
# 4. Create feature branch
|
# 4. Create feature branch
|
||||||
git checkout -b feat/add-myapp
|
git checkout -b feat/add-myapp
|
||||||
@@ -561,7 +561,7 @@ fi
|
|||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: YourUsername
|
# Author: YourUsername
|
||||||
# Co-Author: AnotherAuthor (for collaborative work)
|
# Co-Author: AnotherAuthor (for collaborative work)
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: https://github.com/app/repo
|
# Source: https://github.com/app/repo
|
||||||
# Description: Brief description of what this script does
|
# Description: Brief description of what this script does
|
||||||
```
|
```
|
||||||
@@ -762,7 +762,7 @@ git push origin feat/add-myapp --force-with-lease
|
|||||||
|
|
||||||
### Step 3: Create Pull Request on GitHub
|
### Step 3: Create Pull Request on GitHub
|
||||||
|
|
||||||
**Visit**: https://github.com/community-scripts/ProxmoxVED/pulls
|
**Visit**: https://github.com/--full/ProxmoxVED/pulls
|
||||||
|
|
||||||
**Click**: "New Pull Request"
|
**Click**: "New Pull Request"
|
||||||
|
|
||||||
@@ -982,8 +982,8 @@ echo "Edit /opt/myapp/config.json to customize settings"
|
|||||||
- **Documentation**: `/docs` directory and wikis
|
- **Documentation**: `/docs` directory and wikis
|
||||||
- **Function Reference**: `/misc/*.md` wiki files
|
- **Function Reference**: `/misc/*.md` wiki files
|
||||||
- **Examples**: Look at similar applications in `/ct` and `/install`
|
- **Examples**: Look at similar applications in `/ct` and `/install`
|
||||||
- **GitHub Issues**: https://github.com/community-scripts/ProxmoxVED/issues
|
- **GitHub Issues**: https://github.com/--full/ProxmoxVED/issues
|
||||||
- **Discussions**: https://github.com/community-scripts/ProxmoxVED/discussions
|
- **Discussions**: https://github.com/--full/ProxmoxVED/discussions
|
||||||
|
|
||||||
### Ask Questions
|
### Ask Questions
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ Complete guide to contributing to the ProxmoxVED project - from your first fork
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 1. Fork on GitHub
|
# 1. Fork on GitHub
|
||||||
# Visit: https://github.com/community-scripts/ProxmoxVED → Fork (top right)
|
# Visit: https://github.com/--full/ProxmoxVED → Fork (top right)
|
||||||
|
|
||||||
# 2. Clone your fork
|
# 2. Clone your fork
|
||||||
git clone https://github.com/YOUR_USERNAME/ProxmoxVED.git
|
git clone https://github.com/YOUR_USERNAME/ProxmoxVED.git
|
||||||
@@ -81,7 +81,7 @@ git config user.name "Your Name"
|
|||||||
git config user.email "your.email@example.com"
|
git config user.email "your.email@example.com"
|
||||||
|
|
||||||
# Add upstream remote for syncing
|
# Add upstream remote for syncing
|
||||||
git remote add upstream https://github.com/community-scripts/ProxmoxVED.git
|
git remote add upstream https://github.com/--full/ProxmoxVED.git
|
||||||
|
|
||||||
# Verify remotes
|
# Verify remotes
|
||||||
git remote -v
|
git remote -v
|
||||||
@@ -329,9 +329,9 @@ bash docs/contribution/setup-fork.sh
|
|||||||
|
|
||||||
## 📞 Contact & Support
|
## 📞 Contact & Support
|
||||||
|
|
||||||
- **GitHub**: https://github.com/community-scripts/ProxmoxVED
|
- **GitHub**: https://github.com/--full/ProxmoxVED
|
||||||
- **Issues**: https://github.com/community-scripts/ProxmoxVED/issues
|
- **Issues**: https://github.com/--full/ProxmoxVED/issues
|
||||||
- **Discussions**: https://github.com/community-scripts/ProxmoxVED/discussions
|
- **Discussions**: https://github.com/--full/ProxmoxVED/discussions
|
||||||
- **Discord**: [Join Server](https://discord.gg/UHrpNWGwkH)
|
- **Discord**: [Join Server](https://discord.gg/UHrpNWGwkH)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<div align="center">
|
<div align="center">
|
||||||
<a href="#">
|
<a href="#">
|
||||||
<img src="https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/images/logo.png" height="100px" />
|
<img src="https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/images/logo.png" height="100px" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<h2 align="center">User Submitted Guides </h2>
|
<h2 align="center">User Submitted Guides </h2>
|
||||||
|
|||||||
@@ -182,15 +182,15 @@ create_git_setup_info() {
|
|||||||
git remote -v
|
git remote -v
|
||||||
|
|
||||||
# If you don't have 'upstream' configured, add it:
|
# If you don't have 'upstream' configured, add it:
|
||||||
git remote add upstream https://github.com/community-scripts/ProxmoxVED.git
|
git remote add upstream https://github.com/--full/ProxmoxVED.git
|
||||||
|
|
||||||
# Verify both remotes exist:
|
# Verify both remotes exist:
|
||||||
git remote -v
|
git remote -v
|
||||||
# Should show:
|
# Should show:
|
||||||
# origin https://github.com/YOUR_USERNAME/ProxmoxVED.git (fetch)
|
# origin https://github.com/YOUR_USERNAME/ProxmoxVED.git (fetch)
|
||||||
# origin https://github.com/YOUR_USERNAME/ProxmoxVED.git (push)
|
# origin https://github.com/YOUR_USERNAME/ProxmoxVED.git (push)
|
||||||
# upstream https://github.com/community-scripts/ProxmoxVED.git (fetch)
|
# upstream https://github.com/--full/ProxmoxVED.git (fetch)
|
||||||
# upstream https://github.com/community-scripts/ProxmoxVED.git (push)
|
# upstream https://github.com/--full/ProxmoxVED.git (push)
|
||||||
```
|
```
|
||||||
|
|
||||||
### Configure Git User (if not done globally)
|
### Configure Git User (if not done globally)
|
||||||
@@ -316,7 +316,7 @@ echo ""
|
|||||||
|
|
||||||
print_success "All documentation links updated to point to your fork"
|
print_success "All documentation links updated to point to your fork"
|
||||||
print_info "Your fork: https://github.com/$USERNAME/$REPO_NAME"
|
print_info "Your fork: https://github.com/$USERNAME/$REPO_NAME"
|
||||||
print_info "Upstream: https://github.com/community-scripts/ProxmoxVED"
|
print_info "Upstream: https://github.com/--full/ProxmoxVED"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
echo -e "${BLUE}Next Steps:${NC}"
|
echo -e "${BLUE}Next Steps:${NC}"
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ source <(curl -s https://raw.githubusercontent.com/[USER]/[REPO]/refs/heads/[BRA
|
|||||||
Final script:
|
Final script:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
|
source <(curl -s https://raw.githubusercontent.com/--full/ProxmoxVED/main/misc/build.func)
|
||||||
```
|
```
|
||||||
|
|
||||||
> [!CAUTION]
|
> [!CAUTION]
|
||||||
@@ -67,7 +67,7 @@ Example:
|
|||||||
```bash
|
```bash
|
||||||
# Copyright (c) 2021-2026 community-scripts ORG
|
# Copyright (c) 2021-2026 community-scripts ORG
|
||||||
# Author: [YourUserName]
|
# Author: [YourUserName]
|
||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
|
# License: MIT | https://github.com/--full/ProxmoxVED/raw/main/LICENSE
|
||||||
# Source: [SOURCE_URL]
|
# Source: [SOURCE_URL]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user