Compare commits

..

5 Commits

Author SHA1 Message Date
github-actions[bot]
69d254c263 Update CHANGELOG.md 2024-12-29 20:23:43 +00:00
Michel Roegl-Brunner
415f99e3eb
Hotfix: Grist (#1091) 2024-12-29 21:23:30 +01:00
community-scripts-pr-app[bot]
aa7e8e0810
Update CHANGELOG.md (#1098)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-12-29 21:17:49 +01:00
Bram Suurd
8717a0fcf1
Update add-lxc-iptag.json (#1094) 2024-12-29 21:13:23 +01:00
community-scripts-pr-app[bot]
30bc16072e
Update CHANGELOG.md (#1086)
Some checks are pending
Create Changelog Pull Request / update-changelog-pull-request (push) Waiting to run
Frontend CI/CD / build (push) Waiting to run
Frontend CI/CD / deploy (push) Blocked by required conditions
Shellcheck / Shellcheck (push) Waiting to run
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-12-29 13:35:55 +01:00
4 changed files with 16 additions and 6 deletions

View File

@ -25,6 +25,14 @@ Do not break established syntax in this file, as it is automatically updated by
- New Script: Grist [@cfurrow](https://github.com/cfurrow) ([#1076](https://github.com/community-scripts/ProxmoxVE/pull/1076))
- New Script: TeddyCloud Server [@dsiebel](https://github.com/dsiebel) ([#1064](https://github.com/community-scripts/ProxmoxVE/pull/1064))
### 🚀 Updated Scripts
- Fix Install / Update on Grist Script [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1091](https://github.com/community-scripts/ProxmoxVE/pull/1091))
### 🌐 Website
- fix: Update add-lxc-iptag.json warn to warning [@BramSuurdje](https://github.com/BramSuurdje) ([#1094](https://github.com/community-scripts/ProxmoxVE/pull/1094))
### 🧰 Maintenance
- Introduce editorconfig for more consistent formatting [@dsiebel](https://github.com/dsiebel) ([#1073](https://github.com/community-scripts/ProxmoxVE/pull/1073))

View File

@ -6,7 +6,7 @@ source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/m
APP="Grist"
var_tags="database;spreadsheet"
var_cpu="1"
var_ram="1024"
var_ram="2048"
var_disk="4"
var_os="debian"
var_version="12"

View File

@ -22,6 +22,7 @@ $STD apt-get install -y \
gnupg \
ca-certificates \
mc \
unzip \
python3.11-venv
msg_ok "Installed Dependencies"
@ -43,9 +44,9 @@ wget -q https://github.com/gristlabs/grist-core/archive/refs/tags/v${RELEASE}.zi
unzip -q v$RELEASE.zip
mv grist-core-${RELEASE} grist
cd grist
yarn install
yarn run build:prod
yarn run install:python
$STD yarn install
$STD yarn run build:prod
$STD yarn run install:python
cat <<EOF >/opt/grist/.env
NODE_ENV=production
GRIST_HOST=0.0.0.0
@ -68,6 +69,7 @@ EnvironmentFile=-/opt/grist/.env
[Install]
WantedBy=multi-user.target
EOF
systemctl enable -q --now grist.service
msg_ok "Created Service"

View File

@ -41,7 +41,7 @@
},
{
"text": "The Proxmox Node must contain ipcalc and net-tools. `apt-get install -y ipcalc net-tools`",
"type": "warn"
"type": "warning"
}
]
}